diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-09-14 13:43:12 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-14 13:43:12 +0530 |
commit | 99a8ab7db79c850800715cad2a67e2a962d7e601 (patch) | |
tree | be751f4f4ab592d87d378b0be3f870876845219e | |
parent | 1c208b6b22fac13e00b2fbdccba042adcae2afc2 (diff) | |
parent | 6a758eb828fb6b547ba7ed53384502be65874562 (diff) | |
download | vyos-1x-99a8ab7db79c850800715cad2a67e2a962d7e601.tar.gz vyos-1x-99a8ab7db79c850800715cad2a67e2a962d7e601.zip |
Merge pull request #4068 from vyos/mergify/bp/circinus/pr-4067
T6674: Actions fix variable for trigger build reuse repo (backport #4067)
-rw-r--r-- | .github/workflows/trigger-rebuild-repo-package.yml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/.github/workflows/trigger-rebuild-repo-package.yml b/.github/workflows/trigger-rebuild-repo-package.yml index fb4558fc4..7a6a974c3 100644 --- a/.github/workflows/trigger-rebuild-repo-package.yml +++ b/.github/workflows/trigger-rebuild-repo-package.yml @@ -1,7 +1,7 @@ name: Trigger to build a deb package from repo on: - pull_request: + pull_request_target: types: - closed branches: @@ -9,24 +9,24 @@ on: workflow_dispatch: jobs: - trigger-build: - if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' + get_repo_name: runs-on: ubuntu-latest - - env: - REF: main # Used for curl to trigger build package - + outputs: + PACKAGE_NAME: ${{ steps.package_name.outputs.PACKAGE_NAME }} steps: - name: Set variables + id: package_name run: | - echo "PACKAGE_NAME=$(basename ${{ github.repository }})" >> $GITHUB_ENV + echo "PACKAGE_NAME=$(basename ${{ github.repository }})" >> $GITHUB_OUTPUT - - 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 }}"}}' + trigger-build: + needs: get_repo_name + uses: vyos/.github/.github/workflows/trigger-rebuild-repo-package.yml@circinus + with: + branch: ${{ github.ref_name }} + package_name: ${{ needs.get_repo_name.outputs.PACKAGE_NAME }} + secrets: + REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} + REMOTE_REUSE_REPO: ${{ secrets.REMOTE_REUSE_REPO }} + GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} + PAT: ${{ secrets.PAT }} |