This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
无法打开“Flipper.app”,因为无法验证开发者。 #14424
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: Label issues | |
# This workflow is triggered on issue comments. | |
on: | |
issue_comment: | |
types: created | |
permissions: | |
contents: read | |
jobs: | |
applyNeedsAttentionLabel: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
issues: write # for hramos/needs-attention to label issues | |
name: Apply Needs Attention Label | |
runs-on: ubuntu-latest | |
if: github.repository == 'facebook/flipper' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Apply Needs Attention Label | |
uses: hramos/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
id: needs-attention | |
- name: Result | |
run: echo '${{ steps.needs-attention.outputs.result }}' |