Skip to content

Commit

Permalink
Debug why we don't start on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Vasseur committed Jun 2, 2024
1 parent 22bdbaf commit 6b39cfb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build-domjudge-container-PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ env:
DOMJUDGE_VERSION: M.m.p

jobs:
pr-domjudge-q:
runs-on: ubuntu-latest
steps:
- name: "P"
run: echo "${{ !(github.repository == 'domjudge/domjudge-packaging' && github.ref != 'refs/heads/main') }}"
- name: "Q"
run: echo "${{ !contains(github.ref, 'gh-readonly-queue') }}"
- name: "R"
run: echo "${{ (github.event_name == 'pull_request_target' || github.event.pull_request.head.repo.full_name != github.repository) }}"
- name: "a"
run: |
echo "${{ github.repository }}"
echo "${{ github.ref }}"
echo "${{ github.event_name }}"
echo "${{ github.event.pull_request.head.repo.full_name }}"
pr-domjudge:
if: ${{ !(github.repository == 'domjudge/domjudge-packaging' &&
github.ref == 'refs/heads/main') &&
Expand Down

0 comments on commit 6b39cfb

Please sign in to comment.