diff --git a/.github/workflows/_archive/close-team-sync.ARCHIVEDyaml b/.github/workflows/_archive/close-team-sync.ARCHIVEDyaml deleted file mode 100644 index 9467bfae..00000000 --- a/.github/workflows/_archive/close-team-sync.ARCHIVEDyaml +++ /dev/null @@ -1,18 +0,0 @@ -# ** -# Archived: delete this in March 2022 if we don't decide to re-use it by then. -# ** -# From https://github.com/marketplace/actions/close-matching-issues -name: Close a weekly team sync issue -on: - schedule: - # Run every Tuesday at 03:00PM UTC / 05:00PM Europe / 08:00AM California - - cron: "00 15 * * 2" - -jobs: - close-sync-issue: - runs-on: ubuntu-latest - steps: - - uses: lee-dohm/close-matching-issues@v2 - with: - query: 'sync in:title label:"type: team-sync" is:open' - token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/_archive/create-team-sync.ARCHIVEDyaml b/.github/workflows/_archive/create-team-sync.ARCHIVEDyaml deleted file mode 100644 index 7d7f07bd..00000000 --- a/.github/workflows/_archive/create-team-sync.ARCHIVEDyaml +++ /dev/null @@ -1,22 +0,0 @@ -# ** -# Archived: delete this in March 2022 if we don't decide to re-use it by then. -# ** -name: Open a weekly team sync issue -on: - schedule: - # Run every Monday at 07:00 AM UTC / 09:00AM Europe / 00:00AM California - - cron: "0 07 * * 1" - - workflow_dispatch: - -jobs: - create-sync-issue: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: JasonEtco/create-an-issue@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - filename: .github/ISSUE_TEMPLATE/team-update.md -