Skip to content

Commit d4f18e5

Browse files
fix: try it on all extensions
1 parent 0123d41 commit d4f18e5

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.github/workflows/push-tag-to-extensions.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,19 @@ jobs:
3030
repository: "codecov-bitrise"
3131
version: "${{ needs.set-version.outputs.CODECOV_WRAPPER_VERSION }}"
3232
secrets: inherit
33+
34+
circleci-orb:
35+
needs: set-version
36+
uses: ./.github/workflows/push-tag.yml
37+
with:
38+
repository: "codecov-circleci-orb"
39+
version: "${{ needs.set-version.outputs.CODECOV_WRAPPER_VERSION }}"
40+
secrets: inherit
41+
42+
github-action:
43+
needs: set-version
44+
uses: ./.github/workflows/push-tag.yml
45+
with:
46+
repository: "codecov-action"
47+
version: "${{ needs.set-version.outputs.CODECOV_WRAPPER_VERSION }}"
48+
secrets: inherit

.github/workflows/push-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
22
# yamllint disable rule:line-length
33
name: Push tag to extension
44
on: # yamllint disable-line rule:truthy
@@ -65,6 +65,6 @@ jobs:
6565

6666
- name: Create pull request into main
6767
run: |
68-
gh pr create --title "chore(release): wrapper-${{ inputs.version }}" --body "---" --base "main"
68+
gh pr create --fill --base "main" --assignee "thomasrockhu-codecov"
6969
env:
7070
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

0 commit comments

Comments
 (0)