diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000000..66b721566b --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,3 @@ +# Add 'in:altcoins' and 'is:no-priority' to any file changes within 'assets' folder +in:altcoins: assets/* +is:no-priority: assets/* diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 0000000000..0ae4453b69 --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,12 @@ +name: Pull Request Labeler +on: [pull_request] + +jobs: + label: + + runs-on: ubuntu-latest + + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"