From 6ec1c654bb334ef4ee620170da591b164d655bb9 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Sat, 4 Jan 2020 22:43:39 +0100 Subject: [PATCH] [AIRFLOW-XXXX] Used fixed periodic auto-labeler from potiuk's repo (#7047) The periodic labeler had a bug that it was not using pagination. In effect the labeler was checking only 30 oldest request and if they all contained proper labels, it was not checking any more PRs. Details are available in https://github.com/paulfantom/periodic-labeler/pull/4 But until it is merged, we switch to our own fixed version. GitOrigin-RevId: 592284a7e41adc4ff0ee5a084385e596abf270a6 --- .github/workflows/label.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index c3ab5341b2..b9cbaec288 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -31,7 +31,7 @@ jobs: labeler: runs-on: ubuntu-latest steps: - - uses: paulfantom/periodic-labeler@master + - uses: docker://potiuk/periodic-labeler:latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_REPOSITORY: ${{ github.repository }}