From f19dfcf86cbb1e27d632a851a16bf4cf90ea3d7b Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Tue, 13 Jun 2023 15:43:48 -0700 Subject: [PATCH 01/10] Update move-closed-issues.yaml updating versions --- .github/workflows/move-closed-issues.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/move-closed-issues.yaml b/.github/workflows/move-closed-issues.yaml index dbcb554851..9fea235422 100644 --- a/.github/workflows/move-closed-issues.yaml +++ b/.github/workflows/move-closed-issues.yaml @@ -7,9 +7,9 @@ jobs: move-closed-issue: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Sort Closed Issues by Label - uses: actions/github-script@v4 + uses: actions/github-script@v6 id: sort-closed-issues with: script: | From 1a3ec9b5cf9dbbef0cd6635b20f837c0865cc970 Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Tue, 13 Jun 2023 15:49:37 -0700 Subject: [PATCH 02/10] Update move-closed-issues.yaml --- .github/workflows/move-closed-issues.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/move-closed-issues.yaml b/.github/workflows/move-closed-issues.yaml index 9fea235422..2b8c1508ee 100644 --- a/.github/workflows/move-closed-issues.yaml +++ b/.github/workflows/move-closed-issues.yaml @@ -21,4 +21,4 @@ jobs: with: project: Project Board column: ${{ steps.sort-closed-issues.outputs.result }} - repo-token: ${{ secrets.HACKFORLA_BOT_PA_TOKEN }} + repo-token: ${{ secrets.TEST_GHAS }} From 448bdd873e5dece955f8d77dcd3fd37cbd0e73ae Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Tue, 13 Jun 2023 15:54:37 -0700 Subject: [PATCH 03/10] Update move-closed-issues.yaml --- .github/workflows/move-closed-issues.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/move-closed-issues.yaml b/.github/workflows/move-closed-issues.yaml index 2b8c1508ee..9fea235422 100644 --- a/.github/workflows/move-closed-issues.yaml +++ b/.github/workflows/move-closed-issues.yaml @@ -21,4 +21,4 @@ jobs: with: project: Project Board column: ${{ steps.sort-closed-issues.outputs.result }} - repo-token: ${{ secrets.TEST_GHAS }} + repo-token: ${{ secrets.HACKFORLA_BOT_PA_TOKEN }} From db9c5e6bd611e8d2fe95209aa877ab44f1cbfba4 Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Sun, 18 Jun 2023 11:02:12 -0700 Subject: [PATCH 04/10] Update move-closed-issues.yaml --- .github/workflows/move-closed-issues.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/move-closed-issues.yaml b/.github/workflows/move-closed-issues.yaml index 9fea235422..2b8c1508ee 100644 --- a/.github/workflows/move-closed-issues.yaml +++ b/.github/workflows/move-closed-issues.yaml @@ -21,4 +21,4 @@ jobs: with: project: Project Board column: ${{ steps.sort-closed-issues.outputs.result }} - repo-token: ${{ secrets.HACKFORLA_BOT_PA_TOKEN }} + repo-token: ${{ secrets.TEST_GHAS }} From 910450975109a15d91ec1938b16cfbc1321aa4ed Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Wed, 28 Jun 2023 10:11:31 -0700 Subject: [PATCH 05/10] Update schedule-fri-0700.yml --- .github/workflows/schedule-fri-0700.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/schedule-fri-0700.yml b/.github/workflows/schedule-fri-0700.yml index 7311c0f5b8..ec629e8229 100644 --- a/.github/workflows/schedule-fri-0700.yml +++ b/.github/workflows/schedule-fri-0700.yml @@ -3,6 +3,7 @@ name: Schedule Friday 0700 on: schedule: - cron: '0 7 * * 5' + workflow_dispatch: jobs: Add-Update-Label-to-Issues-Weekly: @@ -11,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/github-script@v4 env: - IN_PROGRESS_COLUMN_ID: ${{ secrets.IN_PROGRESS_COLUMN_ID }} + IN_PROGRESS_COLUMN_ID: ${{ 19304957 }} with: script: | const { IN_PROGRESS_COLUMN_ID } = process.env; From 00a91ce3ce1095ecd91d45ecdc1a7c88bd97fd85 Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Wed, 28 Jun 2023 11:21:17 -0700 Subject: [PATCH 06/10] Update add-label.js commented out line 312 timeZoneName --- .../trigger-schedule/add-update-label-weekly/add-label.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-actions/trigger-schedule/add-update-label-weekly/add-label.js b/github-actions/trigger-schedule/add-update-label-weekly/add-label.js index e255226acb..d1d3a833f8 100644 --- a/github-actions/trigger-schedule/add-update-label-weekly/add-label.js +++ b/github-actions/trigger-schedule/add-update-label-weekly/add-label.js @@ -309,7 +309,7 @@ function formatComment(assignees, labelString) { dateStyle: 'full', timeStyle: 'short', timeZone: 'America/Los_Angeles', - timeZoneName: 'short', + // timeZoneName: 'short', } const cutoffTimeString = threeDayCutoffTime.toLocaleString('en-US', options); let completedInstuctions = text.replace('${assignees}', assignees).replace('${cutoffTime}', cutoffTimeString).replace('${label}', labelString); From e9fa6eac2ce08b0180703e581966458d75e9c186 Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Wed, 28 Jun 2023 13:09:31 -0700 Subject: [PATCH 07/10] revert to original schedule-fri-0700.yml --- .github/workflows/schedule-fri-0700.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/schedule-fri-0700.yml b/.github/workflows/schedule-fri-0700.yml index ec629e8229..7311c0f5b8 100644 --- a/.github/workflows/schedule-fri-0700.yml +++ b/.github/workflows/schedule-fri-0700.yml @@ -3,7 +3,6 @@ name: Schedule Friday 0700 on: schedule: - cron: '0 7 * * 5' - workflow_dispatch: jobs: Add-Update-Label-to-Issues-Weekly: @@ -12,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/github-script@v4 env: - IN_PROGRESS_COLUMN_ID: ${{ 19304957 }} + IN_PROGRESS_COLUMN_ID: ${{ secrets.IN_PROGRESS_COLUMN_ID }} with: script: | const { IN_PROGRESS_COLUMN_ID } = process.env; From 2b6d4e5e122a4eaf042ebdac134c55c432b34f88 Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Wed, 28 Jun 2023 13:10:24 -0700 Subject: [PATCH 08/10] revert to original add-label.js --- .../trigger-schedule/add-update-label-weekly/add-label.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-actions/trigger-schedule/add-update-label-weekly/add-label.js b/github-actions/trigger-schedule/add-update-label-weekly/add-label.js index d1d3a833f8..e255226acb 100644 --- a/github-actions/trigger-schedule/add-update-label-weekly/add-label.js +++ b/github-actions/trigger-schedule/add-update-label-weekly/add-label.js @@ -309,7 +309,7 @@ function formatComment(assignees, labelString) { dateStyle: 'full', timeStyle: 'short', timeZone: 'America/Los_Angeles', - // timeZoneName: 'short', + timeZoneName: 'short', } const cutoffTimeString = threeDayCutoffTime.toLocaleString('en-US', options); let completedInstuctions = text.replace('${assignees}', assignees).replace('${cutoffTime}', cutoffTimeString).replace('${label}', labelString); From 74b993e6f1ac01bb2d2934129af9cb76d5fd467c Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Wed, 28 Jun 2023 13:14:42 -0700 Subject: [PATCH 09/10] revert to previous move-closed-issues.yaml --- .github/workflows/move-closed-issues.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/move-closed-issues.yaml b/.github/workflows/move-closed-issues.yaml index 2b8c1508ee..aee223161a 100644 --- a/.github/workflows/move-closed-issues.yaml +++ b/.github/workflows/move-closed-issues.yaml @@ -21,4 +21,4 @@ jobs: with: project: Project Board column: ${{ steps.sort-closed-issues.outputs.result }} - repo-token: ${{ secrets.TEST_GHAS }} + repo-token: ${{ HACKFORLA_BOT_PA_TOKEN }} From a98fa02ec255208da6b2c5fee3980fc21c232dd0 Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Wed, 28 Jun 2023 13:17:06 -0700 Subject: [PATCH 10/10] revert to orig. changes to move-closed-issues.yaml --- .github/workflows/move-closed-issues.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/move-closed-issues.yaml b/.github/workflows/move-closed-issues.yaml index aee223161a..9fea235422 100644 --- a/.github/workflows/move-closed-issues.yaml +++ b/.github/workflows/move-closed-issues.yaml @@ -21,4 +21,4 @@ jobs: with: project: Project Board column: ${{ steps.sort-closed-issues.outputs.result }} - repo-token: ${{ HACKFORLA_BOT_PA_TOKEN }} + repo-token: ${{ secrets.HACKFORLA_BOT_PA_TOKEN }}