Skip to content

Commit

Permalink
replace dev/script/push-pr.sh with an equivalent GHA via `workflow_…
Browse files Browse the repository at this point in the history
…dispatch` i.e. manual invocation for better developer experience
  • Loading branch information
twrichards committed Jan 22, 2024
1 parent f4a5857 commit faf9322
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 16 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/push-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: push-pr
on:
push:
branches:
- 'move_push-pr_script_to_GHA' #FIXME remove as temporary to check this workflow works
workflow_dispatch: #
inputs:
prNumber:
description: 'PR number'
required: true
type: string
# we decided not to have 'workflow_run' here (chained of CI success) for 'trusted' forks, as we don't know/control the
# access control etc. - so keeping it manual only (via workflow_dispatch above)
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_run:

jobs:
push:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: push-pr
env:
PR: ${{ inputs.prNumber || 4212 }}
run: |
echo "Pushing PR merge commit for ${PR} to remote pr${PR} branch"
git fetch -f origin pull/${PR}/merge:pr${PR}
git push -f origin pr${PR}:pr${PR}
16 changes: 0 additions & 16 deletions dev/script/push-pr.sh

This file was deleted.

0 comments on commit faf9322

Please sign in to comment.