From 678e98a0b9c6580385df3c5088f88d1e2be6c357 Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Thu, 19 Oct 2023 16:04:32 -0800 Subject: [PATCH] update actions to v0.8.3 --- .github/PULL_REQUEST_TEMPLATE/release.md | 16 ---------------- .github/pull_request_template.md | 11 ----------- .github/workflows/changelog.yml | 2 +- .github/workflows/create-jira-issue.yml | 2 +- .github/workflows/labeled-pr.yml | 2 +- .github/workflows/release-template-comment.yml | 12 ++++++++++++ .github/workflows/release.yml | 2 +- .github/workflows/static-analysis.yml | 4 ++-- .github/workflows/tag-version.yml | 2 +- .github/workflows/test-and-build.yml | 6 +++--- 10 files changed, 22 insertions(+), 37 deletions(-) delete mode 100644 .github/PULL_REQUEST_TEMPLATE/release.md delete mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/release-template-comment.yml diff --git a/.github/PULL_REQUEST_TEMPLATE/release.md b/.github/PULL_REQUEST_TEMPLATE/release.md deleted file mode 100644 index ea70893f..00000000 --- a/.github/PULL_REQUEST_TEMPLATE/release.md +++ /dev/null @@ -1,16 +0,0 @@ - - -### Developer checklist - -- [ ] Assigned a reviewer -- [ ] Indicated the level of changes to this package by affixing one of these labels: - * major -- Major changes to the API that may break current workflows - * minor -- Minor changes to the API that do not break current workflows - * patch -- Patches and bugfixes for the current version that do not break current workflows - * bumpless -- Changes to documentation, CI/CD pipelines, etc. that don't affect the software's version -- [ ] (If applicable) Added/updated documentation for these changes -- [ ] (If applicable) Added/updated tests for these changes diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 41c81f71..00000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,11 +0,0 @@ - \ No newline at end of file diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 3737f2ef..1790266f 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -13,6 +13,6 @@ on: jobs: call-changelog-check-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.8.3 secrets: USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/create-jira-issue.yml b/.github/workflows/create-jira-issue.yml index 8ce649de..3a138e94 100644 --- a/.github/workflows/create-jira-issue.yml +++ b/.github/workflows/create-jira-issue.yml @@ -6,7 +6,7 @@ on: jobs: call-create-jira-issue-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.8.3 secrets: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} diff --git a/.github/workflows/labeled-pr.yml b/.github/workflows/labeled-pr.yml index 013f4130..103ae29a 100644 --- a/.github/workflows/labeled-pr.yml +++ b/.github/workflows/labeled-pr.yml @@ -12,4 +12,4 @@ on: jobs: call-labeled-pr-check-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.8.3 diff --git a/.github/workflows/release-template-comment.yml b/.github/workflows/release-template-comment.yml new file mode 100644 index 00000000..2b070b31 --- /dev/null +++ b/.github/workflows/release-template-comment.yml @@ -0,0 +1,12 @@ +on: + pull_request: + types: + - opened + branches: + - main + +jobs: + call-release-checklist-workflow: + uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.8.3 + secrets: + USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a50fc92..691b13e8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: call-release-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.8.3 with: release_prefix: HyP3 autoRIFT secrets: diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index a290461e..5bf4beee 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -4,10 +4,10 @@ on: push jobs: call-flake8-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.8.3 with: local_package_names: hyp3_autorift excludes: hyp3_autorift/vend call-secrets-analysis-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.8.3 diff --git a/.github/workflows/tag-version.yml b/.github/workflows/tag-version.yml index 8f49136a..5130be28 100644 --- a/.github/workflows/tag-version.yml +++ b/.github/workflows/tag-version.yml @@ -7,6 +7,6 @@ on: jobs: call-bump-version-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.8.3 secrets: USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }} diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 59367932..117aca20 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -12,18 +12,18 @@ on: jobs: call-pytest-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.8.3 with: local_package_name: hyp3_autorift python_versions: >- ["3.9", "3.10", "3.11"] call-version-info-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.8.3 call-docker-ghcr-workflow: needs: call-version-info-workflow - uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.8.3 with: version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }} secrets: