Skip to content

Commit cbfc7ae

Browse files
authored
Merge pull request #10 from ryanrolds/pr_gha_test_2
GitHub PR server tests
2 parents 108d21c + 48ed55f commit cbfc7ae

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/pr_close.yml

+12
Original file line numberDiff line numberDiff line change
@@ -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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: grunt test
2525
- name: Build
2626
run: grunt build
27-
- name: Login to DockerHub
27+
- name: Login to Docker repo
2828
uses: docker/login-action@v2
2929
with:
3030
registry: docker.pedanticorderliness.com

0 commit comments

Comments
 (0)