From bd4a370408f1d3a3572a4a80274934a1b3d87a34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Jun 2023 12:21:10 +0000 Subject: [PATCH 1/4] Bump ASFHyP3/actions from 0.7.1 to 0.8.0 Bumps [ASFHyP3/actions](https://github.com/asfhyp3/actions) from 0.7.1 to 0.8.0. - [Release notes](https://github.com/asfhyp3/actions/releases) - [Changelog](https://github.com/ASFHyP3/actions/blob/develop/CHANGELOG.md) - [Commits](https://github.com/asfhyp3/actions/compare/v0.7.1...v0.8.0) --- updated-dependencies: - dependency-name: ASFHyP3/actions dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/changelog.yml | 2 +- .github/workflows/labeled-pr.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/static-analysis.yml | 2 +- .github/workflows/tag-version.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 8c92188..825a70a 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -11,6 +11,6 @@ on: - develop 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.0 secrets: USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/labeled-pr.yml b/.github/workflows/labeled-pr.yml index 013f413..735b477 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.0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7416f48..72f13d8 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.0 with: release_prefix: Actions secrets: diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 7610a80..6f14b3f 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -4,4 +4,4 @@ on: push jobs: 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.0 diff --git a/.github/workflows/tag-version.yml b/.github/workflows/tag-version.yml index 8f49136..2c99081 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.0 secrets: USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }} From 1eb0fa6db0d4f6b2642a9cc2b6ec9a9cef86b117 Mon Sep 17 00:00:00 2001 From: Jake Herrmann Date: Fri, 28 Jul 2023 15:01:49 -0800 Subject: [PATCH 2/4] Add disclaimer for Jira issue link --- .github/workflows/reusable-create-jira-issue.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-create-jira-issue.yml b/.github/workflows/reusable-create-jira-issue.yml index 3bc3c45..6052037 100644 --- a/.github/workflows/reusable-create-jira-issue.yml +++ b/.github/workflows/reusable-create-jira-issue.yml @@ -44,6 +44,9 @@ jobs: uses: actions-cool/issues-helper@v3 with: actions: update-issue - body: "**Jira:** ${{ secrets.JIRA_BASE_URL }}/browse/${{ steps.create_jira_issue.outputs.issue }}\n\ - \n\n\ + body: "\n\ + **Jira:** ${{ secrets.JIRA_BASE_URL }}/browse/${{ steps.create_jira_issue.outputs.issue }}\n\n\ + *Note: The above link is accessible only to members of ASF.*\n\n\ + ----------------------------------------------------------------------------------------------------\n\ + \n\n\ ${{ github.event.issue.body }}" From 1e7bab6d718f5461a7f543b4877c820b91f52189 Mon Sep 17 00:00:00 2001 From: Jake Herrmann Date: Fri, 28 Jul 2023 15:14:59 -0800 Subject: [PATCH 3/4] changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ba6de4..92da5f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/) and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.1] + +### Added +* Modified [`reusable-create-jira-issue.yml`](./.github/workflows/reusable-create-jira-issue.yml) to add + a disclaimer for the Jira issue link. ## [0.8.0] From b81cb7056eb4b5247f918d74d1b6420c0d69a5fe Mon Sep 17 00:00:00 2001 From: Jake Herrmann Date: Fri, 28 Jul 2023 15:29:34 -0800 Subject: [PATCH 4/4] Update README examples and create-jira-issue.yml to v0.8.1 --- .github/workflows/create-jira-issue.yml | 2 +- README.md | 30 ++++++++++++------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/create-jira-issue.yml b/.github/workflows/create-jira-issue.yml index 8ce649d..a2ee3bb 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.1 secrets: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} diff --git a/README.md b/README.md index 2e8f8f5..198cd78 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ on: jobs: call-bump-version-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.8.1 with: user: tools-bot # Optional; default shown email: UAF-asf-apd@alaska.edu # Optional; default shown @@ -57,7 +57,7 @@ on: jobs: call-changelog-check-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.8.1 secrets: USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` @@ -77,7 +77,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.1 secrets: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} @@ -130,13 +130,13 @@ on: jobs: call-version-info-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.8.1 with: conda_env_name: hyp3-plugin call-docker-ecr-workflow: needs: call-version-info-workflow - uses: ASFHyP3/actions/.github/workflows/reusable-docker-ecr.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-docker-ecr.yml@v0.8.1 with: version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }} ecr_registry: 845172464411.dkr.ecr.us-west-2.amazonaws.com @@ -171,13 +171,13 @@ on: jobs: call-version-info-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.8.1 with: conda_env_name: hyp3-plugin call-docker-ghcr-workflow: needs: call-version-info-workflow - uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.8.1 with: version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }} user: ${{ github.actor }} @@ -198,7 +198,7 @@ on: push jobs: call-flake8-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.8.1 with: local_package_names: hyp3_plugin # Required; comma-seperated list of names that should be considered local to your application excludes: hyp3_plugin/ugly.py # Optional; comma-separated list of glob patterns to exclude from checks @@ -226,7 +226,7 @@ on: jobs: call-git-object-name-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-git-object-name.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-git-object-name.yml@v0.8.1 echo-git-object-name-outputs: needs: call-git-object-name-workflow @@ -256,7 +256,7 @@ on: jobs: call-labeled-pr-check-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.8.1 ``` to ensure a release label is included on any PR to `main`. @@ -280,7 +280,7 @@ on: jobs: call-pytest-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.8.1 with: local_package_name: hyp3_plugin # Required; package to produce a coverage report for fail_fast: false # Optional; default shown @@ -309,7 +309,7 @@ on: jobs: call-release-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.8.1 with: release_prefix: HyP3-CI release_branch: main # Optional; default shown @@ -338,7 +338,7 @@ on: jobs: call-release-checklist-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.8.1 permissions: pull-requests: write with: @@ -367,7 +367,7 @@ on: push jobs: call-secrets-analysis-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.8.1 ``` to scan every push for secrets. @@ -393,7 +393,7 @@ on: jobs: call-version-info-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.8.1 with: python_version: '3.9' # Optional; default shown