Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Change push CI to run on workflow_run event" #17717

Merged
merged 1 commit into from Jun 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/self-push-caller.yml
@@ -1,4 +1,3 @@
# Used to trigger self-push CI
name: Self-hosted runner (push-caller)

on:
Expand All @@ -14,8 +13,17 @@ on:

jobs:
run_push_ci:
name: Trigger Push CI
name: Run Push CI
runs-on: ubuntu-latest
steps:
- name: Trigger push CI via workflow_run
run: echo "Trigger push CI via workflow_run"
- name: Checkout transformers
uses: actions/checkout@v2
with:
fetch-depth: 2
ssh-key: "${{ secrets.COMMIT_KEY }}"

- name: Checkout to branch push-ci
# A more strict way to make sure`push-ci` is exactly the same as `main` at the push event commit.
run: |
git checkout -b push-ci
git push -u origin push-ci --force
5 changes: 1 addition & 4 deletions .github/workflows/self-push.yml
@@ -1,12 +1,9 @@
name: Self-hosted runner (push)

on:
workflow_run:
workflows: ["Self-hosted runner (push-caller)"]
branches: ["main"]
types: [completed]
push:
branches:
- push-ci
- ci_*
- ci-*
paths:
Expand Down