Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/rustc-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ on:
description: 'Zulip bot email address'
required: false
type: string
environment:
description: 'GitHub Actions environment that will be used to access secrets'
required: false
type: string
secrets:
github-app-secret:
description: 'Secret for a GitHub app that will create the sync PR'
Expand All @@ -41,6 +45,7 @@ on:
jobs:
perform-pull:
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
outputs:
pr_url: ${{ steps.update-pr.outputs.pr_url }}
pull_result: ${{ steps.josh-sync.outputs.pull_result }}
Expand Down Expand Up @@ -121,6 +126,7 @@ jobs:
needs: [ perform-pull ]
if: ${{ !cancelled() && inputs.zulip-stream-id != '' }}
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
steps:
- uses: actions/checkout@v4

Expand Down
Loading