Skip to content

Commit

Permalink
Test with break
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Dec 7, 2023
1 parent 152a7bb commit 4d59e32
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,31 @@ jobs:
After merge, new images are deployed in:
- [Merge Workflow](https://github.com/${{ github.repository }}/actions/workflows/merge.yml)
test:
test:
name: Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Test vars
run: |
echo "Merge group: ${{ github.workflow }}-${{ github.event.number || github.event.merge_group.base_sha }}"
blocker:
blocker:
name: Blocker
if: github.event_name == 'pull_request'
needs: [test]
runs-on: ubuntu-22.04
steps:
- name: Blocker vars
run: |
echo "Block for merge queues"
# Find initial PR number (for merge queues)
vars:
name: Set Variables
needs: [blocker]
outputs:
pr: ${{ steps.pr.outputs.pr }}
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 4d59e32

Please sign in to comment.