diff --git a/.github/workflows/top-issues.yml b/.github/workflows/top-issues.yml new file mode 100644 index 0000000000000..0c5172fbfa3d2 --- /dev/null +++ b/.github/workflows/top-issues.yml @@ -0,0 +1,21 @@ +name: Label Top Issues + +on: + schedule: + # every sunday at 23 + - cron: '0 23 * * 0' + + +jobs: + label_top_issues: + name: Label Top Issues + + runs-on: ubuntu-latest + steps: + - name: Label Issues + uses: adamzolyak/top-issues-action@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + TOP_NUMBER_OF_ISSUES: 10 + TOP_LABEL_NAME: "👍 Top 10 Issue!" + TOP_LABEL_COLOR: f442c2