update :: 권한 수정 #82
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: Init | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: ${{ contains(github.event.head_commit.message, 'Initial commit') }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get Labelsync from generator repository | |
run: wget https://static.smoothbear.me/labelsync | |
- name: Allow permissions for execute | |
run: chmod 755 labelsync | |
- name: Initialize issue labels | |
run: ./labelsync | |
env: | |
GITHUB_REPOSITORY: ${{ github.event.repository.name }} |