-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3649 from vyos/mergify/bp/equuleus/pr-3647
- Loading branch information
Showing
13 changed files
with
133 additions
and
70 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Add pull request labels | ||
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- equuleus | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
add-pr-label: | ||
uses: vyos/.github/.github/workflows/add-pr-labels.yml@equuleus | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Debian Package Build | ||
on: | ||
pull_request: | ||
branches: | ||
- equuleus | ||
|
||
jobs: | ||
package-build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: vyos/vyos-build:equuleus | ||
options: --sysctl net.ipv6.conf.lo.disable_ipv6=0 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Build Debian package | ||
run: dpkg-buildpackage -uc -us -tc -b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
name: "PR Conflicts checker" | ||
on: | ||
pull_request_target: | ||
types: [synchronize] | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
check-pr-conflict-call: | ||
uses: vyos/.github/.github/workflows/check-pr-merge-conflict.yml@equuleus | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: "Issue and PR stale management" | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
workflow_dispatch: | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
stale: | ||
uses: vyos/.github/.github/workflows/check-stale.yml@equuleus | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Check for unused imports using Pylint | ||
on: | ||
pull_request: | ||
branches: | ||
- equuleus | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
check-unused-imports: | ||
uses: vyos/.github/.github/workflows/check-unused-imports.yml@equuleus | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: "Perform CodeQL Analysis" | ||
|
||
on: | ||
push: | ||
branches: | ||
- equuleus | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: | ||
- equuleus | ||
schedule: | ||
- cron: '22 10 * * 0' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
jobs: | ||
codeql-analysis-call: | ||
uses: vyos/.github/.github/workflows/codeql-analysis.yml@equuleus | ||
secrets: inherit | ||
with: | ||
languages: "['python']" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Mergifyio backport | ||
|
||
on: [issue_comment] | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
mergifyio-backport: | ||
uses: vyos/.github/.github/workflows/label-backport.yml@equuleus | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Repo-sync | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- closed | ||
branches: | ||
- equuleus | ||
workflow_dispatch: | ||
|
||
jobs: | ||
trigger-sync: | ||
uses: vyos/.github/.github/workflows/trigger-repo-sync.yml@equuleus | ||
secrets: | ||
REMOTE_REPO: ${{ secrets.REMOTE_REPO }} | ||
REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} | ||
PAT: ${{ secrets.PAT }} |