Skip to content

Commit 40f6223

Browse files
Merge pull request #677 from colindclare/haproxy_apply_fixes
Add apply functions to HAProxy Frontend
2 parents ed2254d + e61a307 commit 40f6223

29 files changed

Lines changed: 730 additions & 274 deletions
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Weekly Schedule
2+
3+
on:
4+
workflow_dispatch: # Enable manual triggering
5+
schedule:
6+
- cron: "0 18 * * 1"
7+
8+
permissions:
9+
issues: write
10+
pull-requests: write
11+
12+
jobs:
13+
stale:
14+
runs-on: ubuntu-latest
15+
env:
16+
DAYS_BEFORE_STALE: 60
17+
steps:
18+
- uses: actions/stale@v9
19+
with:
20+
stale-issue-message: |
21+
This issue has been automatically marked as stale because it has had no recent activity in the last ${{ env.DAYS_BEFORE_STALE }} days.
22+
stale-pr-message: |
23+
This pull request has been automatically marked as stale because it has had no recent activity in the last ${{ env.DAYS_BEFORE_STALE }} days.
24+
days-before-stale: ${{ env.DAYS_BEFORE_STALE }}
25+
days-before-close: 0
26+
exempt-issue-labels: "feature request,enhancement,bug"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
![Docs](https://img.shields.io/website?url=https%3A%2F%2Fpfrest.org&label=Documentation)
99

1010
The pfSense REST API package is an unofficial, open-source REST and GraphQL API for pfSense CE and pfSense Plus
11-
firewalls.It is designed to be light-weight, fast, and easy to use. This guide will help you get started with the REST
11+
firewalls. It is designed to be light-weight, fast, and easy to use. This guide will help you get started with the REST
1212
API package and provide you with the information you need to configure and use the package effectively.
1313

1414
## Key Features

composer.lock

Lines changed: 150 additions & 140 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)