[ventus][cts] flw/fsw 指令的处理引起新的cts/relationals用例错误 #7
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: Issue Subscriber | |
on: | |
issues: | |
types: | |
- labeled | |
jobs: | |
auto-subscribe: | |
runs-on: ubuntu-latest | |
if: github.repository == 'llvm/llvm-project' | |
steps: | |
- name: Setup Automation Script | |
run: | | |
curl -O -L https://raw.githubusercontent.com/$GITHUB_REPOSITORY/$GITHUB_SHA/llvm/utils/git/github-automation.py | |
curl -O -L https://raw.githubusercontent.com/$GITHUB_REPOSITORY/$GITHUB_SHA/llvm/utils/git/requirements.txt | |
chmod a+x github-automation.py | |
pip install -r requirements.txt | |
- name: Update watchers | |
# https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable | |
env: | |
LABEL_NAME: ${{ github.event.label.name }} | |
run: | | |
./github-automation.py \ | |
--token '${{ secrets.ISSUE_SUBSCRIBER_TOKEN }}' \ | |
issue-subscriber \ | |
--issue-number '${{ github.event.issue.number }}' \ | |
--label-name "$LABEL_NAME" |