You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,7 @@ they are deployed to. Action will find and mark all deployments as `inactive` a
94
94
<br />
95
95
96
96
### Obtain A Token
97
+
97
98
For certain operations _(like deleting an environment)_, your GitHub Action will need additional permissions that the default `github.token` simply doesn't have.
98
99
99
100
<br />
@@ -144,7 +145,7 @@ In this case, a [GitHub App](https://docs.github.com/en/developers/apps/getting-
144
145
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
145
146
146
147
- name: 🗑 Delete deployment environment
147
-
uses: Aetherinox/delete-deploy-env-action@v2.2.3
148
+
uses: Aetherinox/delete-deploy-env-action@v3
148
149
with:
149
150
# Use a JWT created with your GitHub App's private key
150
151
token: ${{ steps.get-token.outputs.token }}
@@ -177,11 +178,13 @@ In this case, a [GitHub App](https://docs.github.com/en/developers/apps/getting-
177
178
<br />
178
179
179
180
## Usage
181
+
180
182
To use this workflow, view the following examples below:
181
183
182
184
<br />
183
185
184
186
### Deactivate / Remove Deployment Environment (also from settings)
187
+
185
188
The example below will be triggered on a delete event.
0 commit comments