Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/create-release-branch.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create Release Branch
name: Create Release Branch and Pin System Tests

on:
push:
Expand Down Expand Up @@ -37,13 +37,12 @@ jobs:
id: define-release-branch
run: |
TAG=${{ steps.determine-tag.outputs.tag }}
echo "branch=test/${TAG%.0}.x" >> "$GITHUB_OUTPUT" # TODO: change back to release/ branch after testing
echo "branch=release/${TAG%.0}.x" >> "$GITHUB_OUTPUT"

- name: Checkout dd-trace-java at tag
- name: Check out repo at tag
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2
# TODO: uncomment after testing
# with:
# ref: ${{ steps.determine-tag.outputs.tag }}
with:
ref: ${{ steps.determine-tag.outputs.tag }}

- name: Check if branch already exists
id: check-release-branch
Expand Down Expand Up @@ -76,7 +75,7 @@ jobs:
scope: DataDog/dd-trace-java
policy: self.pin-system-tests.create-pr

- name: Checkout dd-trace-java at release branch
- name: Check out repo at release branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2
with:
ref: ${{ needs.create-release-branch.outputs.release-branch-name }}
Expand All @@ -86,7 +85,7 @@ jobs:
run: |
echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT

- name: Define pin-system-tests branch name
- name: Define pin-system-tests branch name from date
id: define-pin-branch
run: echo "branch=ci/pin-system-tests-$(date +'%Y%m%d')" >> $GITHUB_OUTPUT

Expand Down
113 changes: 0 additions & 113 deletions .github/workflows/pin-system-tests.yaml

This file was deleted.

Loading