We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 108d21c + 48ed55f commit cbfc7aeCopy full SHA for cbfc7ae
.github/workflows/pr_close.yml
@@ -0,0 +1,12 @@
1
+name: closed pr
2
+on:
3
+ pull_request:
4
+ types: [closed]
5
+jobs:
6
+ build:
7
+ name: Build
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Delete Screeps Server Resource
11
+ run: |
12
+ curl --fail -X DELETE -H "X-Access-Token: ${{ secrets.ACTIONS_ACCESS_TOKEN }}" "https://actions.pedanticorderliness.com/resource/screeps/server?branch=${{ github.head_ref }}&tag=${{ github.sha }}"
.github/workflows/pr_open.yml
@@ -24,7 +24,7 @@ jobs:
24
run: grunt test
25
- name: Build
26
run: grunt build
27
- - name: Login to DockerHub
+ - name: Login to Docker repo
28
uses: docker/login-action@v2
29
with:
30
registry: docker.pedanticorderliness.com
0 commit comments