-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
T6386: added reusable workflows and codeowners
- Loading branch information
Showing
16 changed files
with
142 additions
and
127 deletions.
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
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,18 @@ | ||
--- | ||
name: Add pull request labels | ||
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- current | ||
- equuleus | ||
- sagitta | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
add-pr-label: | ||
uses: vyos/.github/.github/workflows/add-pr-labels.yml@feature/T6349-reusable-workflows | ||
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 |
---|---|---|
|
@@ -3,25 +3,12 @@ on: | |
pull_request_target: | ||
types: [opened, reopened, ready_for_review, locked] | ||
|
||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
# https://github.com/marketplace/actions/auto-author-assign | ||
assign-author: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Assign Author to PR" | ||
uses: toshimaru/[email protected] | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# https://github.com/shufo/auto-assign-reviewer-by-files | ||
assign_reviewer: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Request review based on files changes and/or groups the author belongs to | ||
uses: shufo/[email protected] | ||
with: | ||
token: ${{ secrets.PR_ACTION_ASSIGN_REVIEWERS }} | ||
config: .github/reviewers.yml | ||
uses: vyos/.github/.github/workflows/assign-author.yml@feature/T6349-reusable-workflows | ||
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,18 @@ | ||
--- | ||
name: Check pull request message format | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- current | ||
- sagitta | ||
- equuleus | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
check-pr-title: | ||
uses: vyos/.github/.github/workflows/check-pr-message.yml@feature/T6349-reusable-workflows | ||
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: "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@feature/T6349-reusable-workflows | ||
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@feature/T6349-reusable-workflows | ||
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 | ||
- sagitta | ||
- equuleus | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
check-unused-imports: | ||
uses: vyos/.github/.github/workflows/check-unused-imports.yml@feature/T6349-reusable-workflows | ||
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,23 @@ | ||
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' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
jobs: | ||
codeql-analysis-call: | ||
uses: vyos/.github/.github/workflows/codeql-analysis.yml@feature/T6349-reusable-workflows | ||
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@feature/T6349-reusable-workflows | ||
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,19 @@ | ||
--- | ||
name: J2 Lint | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- current | ||
- sagitta | ||
- equuleus | ||
workflow_dispatch: | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
j2lint: | ||
uses: vyos/.github/.github/workflows/lint-j2.yml@feature/T6349-reusable-workflows | ||
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 @@ | ||
* @kumvijaya |
This file was deleted.
Oops, something went wrong.