Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

T6487: updated central workflows to use equuleus branch (backport #3647) #3649

Merged
merged 1 commit into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .github/labeler.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/add-pr-labels.yml
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
20 changes: 3 additions & 17 deletions .github/workflows/auto-author-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,9 @@ on:

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/auto-author-assign@v1.3.5
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/auto-assign-reviewer-by-files@v1.1.4
with:
token: ${{ secrets.PR_ACTION_ASSIGN_REVIEWERS }}
config: .github/reviewers.yml
uses: vyos/.github/.github/workflows/assign-author.yml@equuleus
secrets: inherit
17 changes: 17 additions & 0 deletions .github/workflows/build-package.yml
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
4 changes: 1 addition & 3 deletions .github/workflows/chceck-pr-message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ name: Check pull request message format
on:
pull_request_target:
branches:
- current
- crux
- equuleus
types: [opened, synchronize, edited]

Expand All @@ -15,5 +13,5 @@ permissions:

jobs:
check-pr-title:
uses: vyos/.github/.github/workflows/check-pr-message.yml@feature/T6349-reusable-workflows
uses: vyos/.github/.github/workflows/check-pr-message.yml@equuleus
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/check-pr-conflicts.yml
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
14 changes: 14 additions & 0 deletions .github/workflows/check-stale.yml
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
14 changes: 14 additions & 0 deletions .github/workflows/check-unused-imports.yml
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
25 changes: 25 additions & 0 deletions .github/workflows/codeql.yml
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']"
12 changes: 12 additions & 0 deletions .github/workflows/label-backport.yml
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
18 changes: 0 additions & 18 deletions .github/workflows/pr-conflicts.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/pull-request-labels.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/repo-sync.yml
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 }}
Loading