feat: This plugin's latest version not supported with @capacitor/core 7.0.0 (Latest version). Please provide the new version for this plugin. #13
This file contains hidden or 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: Add needs-triage label | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
needs-triage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add needs-triage label | |
if: join(github.event.issue.labels) == '' | |
run: | | |
curl --request POST \ | |
--url 'https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels' \ | |
--header 'Authorization: token ${{ secrets.GITHUB_TOKEN }}' \ | |
--header 'Content-Type: application/json' \ | |
--header 'Accept: application/vnd.github.v3+json' \ | |
--data-raw '{ "labels": ["needs: triage"] }' |