1
0
mirror of synced 2025-12-30 03:01:36 -05:00

Removed duplicate actions reusable folder

This commit is contained in:
Sophie
2022-02-25 15:51:14 +01:00
parent 87a7257bf4
commit 50c0b2d0b0
196 changed files with 334 additions and 334 deletions

View File

@@ -0,0 +1,19 @@
This example workflow uses the [labeler action](https://github.com/actions/labeler), which requires the `GITHUB_TOKEN` as the value for the `repo-token` input parameter:
```yaml{:copy}
name: Pull request labeler
on: [ pull_request_target ]
{% ifversion fpt or ghes > 3.1 or ghae or ghec %}permissions:
contents: read
pull-requests: write
{% endif %}
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
repo-token: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
```