-
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.
T6487: updated central workflows to use current branch
(cherry picked from commit 6c4bd6c) # Conflicts: # .github/workflows/add-pr-labels.yml # .github/workflows/auto-author-assign.yml # .github/workflows/check-pr-conflicts.yml # .github/workflows/check-stale.yml # .github/workflows/check-unused-imports.yml # .github/workflows/codeql.yml # .github/workflows/label-backport.yml # .github/workflows/repo-sync.yml
- Loading branch information
1 parent
a760899
commit ff4582c
Showing
9 changed files
with
119 additions
and
1 deletion.
There are no files selected for viewing
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,19 @@ | ||
--- | ||
name: Add pull request labels | ||
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- current | ||
- crux | ||
- equuleus | ||
- sagitta | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
add-pr-label: | ||
uses: vyos/.github/.github/workflows/add-pr-labels.yml@current | ||
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
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@current | ||
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,13 @@ | ||
name: "Issue and PR stale management" | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
stale: | ||
uses: vyos/.github/.github/workflows/check-stale.yml@current | ||
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,16 @@ | ||
name: Check for unused imports using Pylint | ||
on: | ||
pull_request: | ||
branches: | ||
- current | ||
- equuleus | ||
- sagitta | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
check-unused-imports: | ||
uses: vyos/.github/.github/workflows/check-unused-imports.yml@current | ||
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,22 @@ | ||
name: "Perform CodeQL Analysis" | ||
|
||
on: | ||
push: | ||
branches: [ "current", "sagitta", "equuleus" ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [ "current" ] | ||
schedule: | ||
- cron: '22 10 * * 0' | ||
|
||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
jobs: | ||
codeql-analysis-call: | ||
uses: vyos/.github/.github/workflows/codeql-analysis.yml@current | ||
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@current | ||
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,17 @@ | ||
name: Repo-sync | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- closed | ||
branches: | ||
- current | ||
workflow_dispatch: | ||
|
||
jobs: | ||
trigger-sync: | ||
uses: vyos/.github/.github/workflows/trigger-repo-sync.yml@current | ||
secrets: | ||
REMOTE_REPO: ${{ secrets.REMOTE_REPO }} | ||
REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} | ||
PAT: ${{ secrets.PAT }} |