포인트 결제 페이지로 진입하지 못하도록 함 #2272
Workflow file for this run
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: Cleanup preview label | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
remove-label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/create-github-app-token@v1 | |
id: gh-token | |
with: | |
app-id: ${{ secrets.GH_APP_ID }} | |
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} | |
- uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
github_token: ${{ steps.gh-token.outputs.token }} | |
labels: preview |