Skip to content

Commit bf8df5c

Browse files
authored
Rename release workflows to use hyphens (#445)
*Issue #, if available:* *Description of changes:* Renamed workflows to use hyphens(-) instead of underscores(_). This aligns our workflow names across all 4 ADOT repos so its easier to write adaptable templates that reference these workflows. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
2 parents 1f566a0 + d1d8a05 commit bf8df5c

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed
File renamed without changes.

.github/workflows/post_release_version_bump.yml renamed to .github/workflows/post-release-version-bump.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ jobs:
9999
DEV_VERSION="${{ github.event.inputs.version }}.dev0"
100100
sed -i 's/__version__ = ".*"/__version__ = "'$DEV_VERSION'"/' aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py
101101
VERSION="${{ github.event.inputs.version }}"
102-
sed -i 's/python:v.*"/python:v'$VERSION'"/' .github/workflows/daily_scan.yml
102+
sed -i 's/python:v.*"/python:v'$VERSION'"/' .github/workflows/daily-scan.yml
103103
git add aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py
104-
git add .github/workflows/daily_scan.yml
104+
git add .github/workflows/daily-scan.yml
105105
git commit -m "Prepare main for next development cycle: Update version to $DEV_VERSION"
106106
git push --set-upstream origin "prepare-main-for-next-dev-cycle-${VERSION}"
107107

.github/workflows/pr_build.yml renamed to .github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Build Wheel and Image Files
2424
uses: ./.github/actions/artifacts_build
2525
with:
26-
image_uri_with_tag: pr_build/${{ matrix.python-version }}
26+
image_uri_with_tag: pr-build/${{ matrix.python-version }}
2727
push_image: false
2828
load_image: true
2929
python_version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)