Skip to content

Commit f4b73cb

Browse files
authored
chore: Creates temporary workflow to create a test tag using Github actions (#3440)
1 parent 14e40d7 commit f4b73cb

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

.github/workflows/create-test-tag.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: 'test papertrail on tag create workflow - will be reverted'
2+
3+
on:
4+
workflow_dispatch:
5+
6+
7+
jobs:
8+
9+
create-tag:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
16+
with:
17+
ref: 'test-submitter'
18+
- name: Get the latest commit SHA
19+
id: get-sha
20+
run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
21+
- name: Create test tag
22+
uses: rickstaa/action-create-tag@a1c7777fcb2fee4f19b0f283ba888afa11678b72
23+
with:
24+
tag: 'test-v1.37.0'
25+
commit_sha: ${{ steps.get-sha.outputs.sha }}
26+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
27+
gpg_passphrase: ${{ secrets.PASSPHRASE }}
28+

build/ci/papertrail.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,9 @@ functions:
121121
params:
122122
key_id: ${papertrail_key_id}
123123
secret_key: ${papertrail_secret_key}
124-
product: "terraform-provider-mongodbatlas"
124+
product: "tmp2-terraform-provider-mongodbatlas"
125125
version: ${release_version}
126+
submitter: "svc-apix-Bot"
126127
filenames:
127128
- "src/github.com/mongodb/terraform-provider-mongodbatlas/release_artifacts/*.zip"
128129

0 commit comments

Comments
 (0)