Skip to content

Commit

Permalink
Do not auto-create PR on fork
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Feb 6, 2022
1 parent 0fabecd commit 9ed1e44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -242,7 +242,7 @@ jobs:
run: rustup update nightly && rustup default nightly
- run: ci/no_atomic_cas.sh
- run: git add -N . && git diff --exit-code
if: github.event_name != 'schedule'
if: github.repository_owner != 'rust-lang' || github.event_name != 'schedule'
- id: diff
run: |
git config user.name "Taiki Endo"
Expand All @@ -253,7 +253,7 @@ jobs:
git commit -m "Update no_atomic_cas.rs"
echo "::set-output name=success::false"
fi
if: github.event_name == 'schedule'
if: github.repository_owner == 'rust-lang' && github.event_name == 'schedule'
- uses: peter-evans/create-pull-request@v3
with:
title: Update no_atomic_cas.rs
Expand All @@ -264,7 +264,7 @@ jobs:
[1]: https://github.com/peter-evans/create-pull-request
[2]: https://github.com/peter-evans/create-pull-request/blob/HEAD/docs/concepts-guidelines.md#workarounds-to-trigger-further-workflow-runs
branch: update-no-atomic-cas-rs
if: github.event_name == 'schedule' && steps.diff.outputs.success == 'false'
if: github.repository_owner == 'rust-lang' && github.event_name == 'schedule' && steps.diff.outputs.success == 'false'

miri:
name: cargo miri test
Expand Down

0 comments on commit 9ed1e44

Please sign in to comment.