File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed
Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1+ name : BCT trigger
2+ on :
3+ issue_comment :
4+ types : [created, edited]
5+ jobs :
6+ pr-comment :
7+ runs-on : ubuntu-latest
8+ if : github.event.issue.pull_request && contains(github.event.comment.body, 'Deploy Preview for') && contains(github.event.comment.body, 'ready!')
9+ steps :
10+ - uses : actions/checkout@v3
11+ - name : Extract repository name
12+ id : repo_name
13+ run : echo "::set-output name=repo::$(echo ${{ github.repository }} | cut -d'/' -f2)"
14+ - run : echo "https://deploy-preview-${{ github.event.issue.number }}--${{ steps.repo_name.outputs.repo }}.netlify.app"
15+ - name : Dump GitHub context
16+ env :
17+ GITHUB_CONTEXT : ${{ toJson(github) }}
18+ run : echo "$GITHUB_CONTEXT"
19+ - name : Dump job context
20+ env :
21+ JOB_CONTEXT : ${{ toJson(job) }}
22+ run : echo "$JOB_CONTEXT"
Original file line number Diff line number Diff line change 88 steps :
99 - uses : actions/checkout@v3
1010 # see list of commands: https://github.com/sendbird/release-automation-action#commands
11- - uses : sendbird/release-automation-action@0.0.3
11+ - uses : sendbird/release-automation-action@latest
1212 with :
1313 gh_token : ${{ secrets.GITHUB_TOKEN }}
1414 circleci_token : ${{ secrets.CIRCLECI_API_TOKEN }}
You can’t perform that action at this time.
0 commit comments