branch-deploy #2546
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: branch-deploy | |
on: | |
issue_comment: | |
types: [created] | |
# Permissions needed for reacting and adding comments for IssueOps commands | |
permissions: | |
pull-requests: write | |
deployments: write | |
contents: write | |
checks: read | |
jobs: | |
deploy: | |
name: deploy | |
runs-on: ubuntu-latest | |
if: ${{ github.event.issue.pull_request }} # only run on pull request comments | |
steps: | |
# The branch-deploy Action | |
- name: branch-deploy | |
id: branch-deploy | |
uses: github/branch-deploy@v9.9.1 | |
# If the branch-deploy Action was triggered, checkout our branch | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ steps.branch-deploy.outputs.ref }} | |
# If the branch-deploy Action was triggered, run the deployment (i.e. '.deploy') | |
- name: deploy | |
if: ${{ steps.branch-deploy.outputs.continue == 'true' && steps.branch-deploy.outputs.noop != 'true' }} | |
run: echo ${{ steps.branch-deploy.outputs.ref }} |