Skip to content

Commit be2b0d9

Browse files
committed
remove branch refs
1 parent 0536f3b commit be2b0d9

7 files changed

+11
-11
lines changed

.github/actions/help-command/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
using: "composite"
1111
steps:
1212
- name: Show Available Commands
13-
uses: actions/github-script@justin808-more-work-on-review-apps-1
13+
uses: actions/github-script
1414
with:
1515
github-token: ${{ inputs.github-token }}
1616
script: |

.github/workflows/delete-review-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
fi
5959
6060
- name: Setup Environment
61-
uses: ./.github/actions/setup-environment@justin808-more-work-on-review-apps-1
61+
uses: ./.github/actions/setup-environment
6262
with:
6363
org: ${{ env.CPLN_ORG }}
6464
token: ${{ env.CPLN_TOKEN }}
@@ -132,7 +132,7 @@ jobs:
132132
return { commentId: comment.data.id };
133133
134134
- name: Delete Review App
135-
uses: ./.github/actions/delete-control-plane-app@justin808-more-work-on-review-apps-1
135+
uses: ./.github/actions/delete-control-plane-app
136136
with:
137137
app_name: ${{ env.APP_NAME }}
138138
org: ${{ env.CPLN_ORG }}

.github/workflows/deploy-to-control-plane-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fetch-depth: 0 # Fetch all history for proper SHA handling
2727
ref: master # Explicitly checkout master branch
2828

29-
- uses: ./.github/actions/deploy-to-control-plane@justin808-more-work-on-review-apps-1
29+
- uses: ./.github/actions/deploy-to-control-plane
3030
with:
3131
app_name: ${{ vars.STAGING_APP_NAME }}
3232
org: ${{ vars.CPLN_ORG_STAGING }}

.github/workflows/deploy-to-control-plane.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref || steps.getRef.outputs.PR_REF || github.ref }}
4141

4242
- name: Setup Environment
43-
uses: ./.github/actions/setup-environment@justin808-more-work-on-review-apps-1
43+
uses: ./.github/actions/setup-environment
4444
with:
4545
token: ${{ env.CPLN_TOKEN }}
4646
org: ${{ env.CPLN_ORG }}
@@ -228,7 +228,7 @@ jobs:
228228
github.event.issue.pull_request &&
229229
github.event.comment.body == '/deploy-review-app') ||
230230
(steps.check-app.outputs.app_exists == 'true')
231-
uses: ./.github/actions/build-docker-image@justin808-more-work-on-review-apps-1
231+
uses: ./.github/actions/build-docker-image
232232
with:
233233
app_name: ${{ env.APP_NAME }}
234234
org: ${{ env.CPLN_ORG }}
@@ -269,7 +269,7 @@ jobs:
269269
github.event.issue.pull_request &&
270270
github.event.comment.body == '/deploy-review-app') ||
271271
(steps.check-app.outputs.app_exists == 'true')
272-
uses: ./.github/actions/deploy-to-control-plane@justin808-more-work-on-review-apps-1
272+
uses: ./.github/actions/deploy-to-control-plane
273273
with:
274274
app_name: ${{ env.APP_NAME }}
275275
org: ${{ env.CPLN_ORG }}

.github/workflows/help-command.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@justin808-more-work-on-review-apps-1
26+
uses: actions/checkout
2727

2828
- name: Show Help Information
29-
uses: ./.github/actions/help-command@justin808-more-work-on-review-apps-1
29+
uses: ./.github/actions/help-command
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/nightly-remove-stale-review-apps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020

2121
- name: Setup Environment
22-
uses: ./.github/actions/setup-environment@justin808-more-work-on-review-apps-1
22+
uses: ./.github/actions/setup-environment
2323

2424
- name: Get Stale PRs
2525
id: stale_prs

.github/workflows/promote-staging-to-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v4
2424

2525
- name: Setup Environment
26-
uses: ./.github/actions/setup-environment@justin808-more-work-on-review-apps-1
26+
uses: ./.github/actions/setup-environment
2727
env:
2828
CPLN_TOKEN: ${{ secrets.CPLN_TOKEN }}
2929

0 commit comments

Comments
 (0)