Skip to content

Commit

Permalink
Merge pull request #89 from kumvijaya/current
Browse files Browse the repository at this point in the history
T6722: updated to use reusable workflows
  • Loading branch information
c-po authored Sep 17, 2024
2 parents 98e8955 + 33c0aef commit d2484fe
Show file tree
Hide file tree
Showing 20 changed files with 153 additions and 228 deletions.
2 changes: 0 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ the box, please use [x]
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Code style update (formatting, renaming)
- [ ] Refactoring (no functional changes)
- [ ] Migration from an old Vyatta component to vyos-1x, please link to related PR inside obsoleted component
- [ ] Other (please describe):

## Related Task(s)
Expand Down Expand Up @@ -54,7 +53,6 @@ test_01_simple_options (__main__.TestFeature.test_01_simple_options) ... ok
<!--- The entire development process is outlined here: https://docs.vyos.io/en/latest/contributing/development.html -->
- [ ] I have read the [**CONTRIBUTING**](https://github.com/vyos/vyos-1x/blob/current/CONTRIBUTING.md) document
- [ ] I have linked this PR to one or more Phabricator Task(s)
- [ ] I have run the components [**SMOKETESTS**](https://github.com/vyos/vyos-1x/tree/current/smoketest/scripts/cli) if applicable
- [ ] My commit headlines contain a valid Task id
- [ ] My change requires a change to the documentation
- [ ] I have updated the documentation accordingly
12 changes: 0 additions & 12 deletions .github/labeler.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .github/reviewers.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:
- current

permissions:
pull-requests: write
contents: read

jobs:
add-pr-label:
uses: vyos/.github/.github/workflows/add-pr-labels.yml@current
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/add-rebase-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Add rebase label

on:
pull_request_target:
types: [synchronize, opened, reopened, labeled, unlabeled]

permissions:
pull-requests: write
contents: read

jobs:
add-rebase-label:
uses: vyos/.github/.github/workflows/add-rebase-label.yml@current
secrets: inherit
21 changes: 4 additions & 17 deletions .github/workflows/auto-author-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@current
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@current
secrets: inherit
17 changes: 17 additions & 0 deletions .github/workflows/check-pr-message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Check pull request message format

on:
pull_request_target:
branches:
- current
types: [opened, synchronize, edited]

permissions:
pull-requests: write
contents: read

jobs:
check-pr-title:
uses: vyos/.github/.github/workflows/check-pr-message.yml@current
secrets: inherit
13 changes: 13 additions & 0 deletions .github/workflows/check-stale.yml
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
84 changes: 20 additions & 64 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,74 +1,30 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
name: "Perform CodeQL Analysis"

on:
push:
branches: [ "current", crux, equuleus ]
branches: [ "current" ]
paths:
- '**'
- '!.github/**'
- '!**/*.md'
pull_request:
# The branches below must be a subset of the branches above
branches: [ "current" ]
paths:
- '**'
- '!.github/**'
- '!**/*.md'
schedule:
- cron: '22 10 * * 0'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
permissions:
actions: read
contents: read
security-events: write


# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
jobs:
codeql-analysis-call:
uses: vyos/.github/.github/workflows/codeql-analysis.yml@current
secrets: inherit
with:
languages: "['cpp']"
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@current
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/lint-j2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Lint J2
on:
pull_request_target:
branches:
- current

permissions:
pull-requests: write
contents: read

jobs:
lint-j2:
uses: vyos/.github/.github/workflows/lint-j2.yml@current
secrets: inherit
22 changes: 0 additions & 22 deletions .github/workflows/mergifyio_backport.yml

This file was deleted.

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.

25 changes: 0 additions & 25 deletions .github/workflows/pull-request-management.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/pull-request-message-check.yml

This file was deleted.

Loading

0 comments on commit d2484fe

Please sign in to comment.