From b420b1ff2a4bbf8383ede593b84952854a9e312d Mon Sep 17 00:00:00 2001 From: John Boyes Date: Sun, 16 Aug 2020 19:57:35 +0700 Subject: [PATCH] Hide Ubuntu issue template from create issue page (#56) The Ubuntu issue is automatically created in July each year, so we don't want to show the option of creating an issue manually based on that issue template. --- .../{ => scheduled}/update-ubuntu-version-in-github-actions.md | 0 .github/workflows/schedule_ubuntu_annual_update_issue.yml | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .github/ISSUE_TEMPLATE/{ => scheduled}/update-ubuntu-version-in-github-actions.md (100%) diff --git a/.github/ISSUE_TEMPLATE/update-ubuntu-version-in-github-actions.md b/.github/ISSUE_TEMPLATE/scheduled/update-ubuntu-version-in-github-actions.md similarity index 100% rename from .github/ISSUE_TEMPLATE/update-ubuntu-version-in-github-actions.md rename to .github/ISSUE_TEMPLATE/scheduled/update-ubuntu-version-in-github-actions.md diff --git a/.github/workflows/schedule_ubuntu_annual_update_issue.yml b/.github/workflows/schedule_ubuntu_annual_update_issue.yml index 9a4de0e..aaf8592 100644 --- a/.github/workflows/schedule_ubuntu_annual_update_issue.yml +++ b/.github/workflows/schedule_ubuntu_annual_update_issue.yml @@ -21,6 +21,6 @@ jobs: assignees: "johnboyes" labels: "dependencies" # assignees & labels in the template are overridden by the values specified in this action - template: ".github/ISSUE_TEMPLATE/update-ubuntu-version-in-github-actions.md" + template: ".github/ISSUE_TEMPLATE/scheduled/update-ubuntu-version-in-github-actions.md" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}