We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b30543 commit 916c0e5Copy full SHA for 916c0e5
1 file changed
.github/workflows/dc_deploy.yml
@@ -2,16 +2,6 @@ name: 'DC: Deploy'
2
3
on:
4
workflow_call:
5
- secrets:
6
- SSH_HOST:
7
- required: true
8
- description: "SSH host"
9
- SSH_USER:
10
11
- description: "SSH user"
12
- SSH_PRIVATE_KEY:
13
14
- description: "SSH private_key"
15
16
# Special permissions required for OIDC authentication
17
permissions:
@@ -36,6 +26,7 @@ jobs:
36
26
gh-delete-branch:
37
27
name: 'GitHub: Delete Branch'
38
28
runs-on: ubuntu-latest
29
+ environment: dev
39
30
needs: [dc-release]
40
31
if: github.event_name == 'pull_request' && github.event.pull_request.merged && !failure() && !cancelled()
41
32
steps:
@@ -46,4 +37,4 @@ jobs:
46
47
- name: Delete Branch
48
shell: bash
49
- run: git push origin --delete ${{ github.head_ref }} || true
+ run: git push origin --delete ${{ github.head_ref }} || true
0 commit comments