diff options
author | Marc Cornellà <marc.cornella@live.com> | 2019-08-13 15:10:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-13 15:10:15 +0200 |
commit | 4974143745360bfbfde535eab23df27daa8e3c8f (patch) | |
tree | a850acfb79fea0c4f469937f99b4221fee7f2e35 /.github | |
parent | d8ad4e902cd359cf0a58cc8fc759377ec3d3c026 (diff) | |
download | zsh-4974143745360bfbfde535eab23df27daa8e3c8f.tar.gz zsh-4974143745360bfbfde535eab23df27daa8e3c8f.tar.bz2 zsh-4974143745360bfbfde535eab23df27daa8e3c8f.zip |
meta: move if condition on workflow to steps
Provisional measure due to "Unexpected value 'if'" error. See https://github.community/t5/GitHub-API-Development-and/jobs-lt-job-id-gt-if-not-working/m-p/28980
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pull_request_triage.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/pull_request_triage.yml b/.github/workflows/pull_request_triage.yml index 341298a0f..a27392a92 100644 --- a/.github/workflows/pull_request_triage.yml +++ b/.github/workflows/pull_request_triage.yml @@ -1,13 +1,13 @@ on: pull_request name: Triage Pull Request jobs: - mainJob: + triage: name: Triage - if: github.event.action == 'opened' || github.event.action == 'synchronize' runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@master + if: github.event.action == 'opened' || github.event.action == 'synchronize' - name: Analyze and triage uses: ohmyzsh/github-actions/pull-request-triage@master env: |