diff options
author | Christian Breunig <christian@breunig.cc> | 2024-09-08 08:13:22 +0200 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-09-09 11:29:54 +0300 |
commit | b051b93e81d5ab0e87fc8dffb1b576190c1cd733 (patch) | |
tree | 610e2ef64c4b3788178be8507d72835eb848eb6e | |
parent | 689002845733b73674d77ba9756822483a5464f1 (diff) | |
parent | f1fd13941ed3c7c6f1504957066d0d8780709cc2 (diff) | |
download | vyos-1x-b051b93e81d5ab0e87fc8dffb1b576190c1cd733.tar.gz vyos-1x-b051b93e81d5ab0e87fc8dffb1b576190c1cd733.zip |
Merge pull request #4030 from sever-sever/T6674mergify/bp/circinus/pr-4030
T6674: workflow: Add trigger to rebuild repo package
-rw-r--r-- | .github/workflows/trigger-rebuild-repo-package.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/trigger-rebuild-repo-package.yml b/.github/workflows/trigger-rebuild-repo-package.yml new file mode 100644 index 000000000..fb4558fc4 --- /dev/null +++ b/.github/workflows/trigger-rebuild-repo-package.yml @@ -0,0 +1,32 @@ +name: Trigger to build a deb package from repo + +on: + pull_request: + types: + - closed + branches: + - circinus + workflow_dispatch: + +jobs: + trigger-build: + if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' + runs-on: ubuntu-latest + + env: + REF: main # Used for curl to trigger build package + + steps: + - name: Set variables + run: | + echo "PACKAGE_NAME=$(basename ${{ github.repository }})" >> $GITHUB_ENV + + - name: Trigger rebuild for ${{ env.PACKAGE_NAME }} + run: | + curl -L \ + -X POST \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer ${{ secrets.PAT }}" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + https://api.github.com/repos/${{ secrets.REMOTE_OWNER }}/${{ secrets.REMOTE_REUSE_REPO }}/actions/workflows/build-package.yml/dispatches \ + -d '{"ref": "${{ env.REF }}", "inputs":{"package_name":"'"$PACKAGE_NAME"'", "gpg_key_id": "${{ secrets.GPG_KEY_ID }}", "package_branch": "${{ github.ref_name }}"}}' |