请求添加每日编译版的LMMS #137
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
on: | |
issues: | |
types: [opened, labeled] | |
name: Issues | |
jobs: | |
issueHandler: | |
name: IssueHandler | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
ssh-key: "${{secrets.DEPLOY_KEY}}" | |
- run: | | |
git config --local --unset-all 'http.https://github.com/.extraheader' | |
git config --local --name-only --list | |
- name: IssueHandler | |
uses: ScoopInstaller/Scoop-GithubActions@main | |
if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify')) | |
env: | |
GITH_EMAIL: [email protected] | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |