-
-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (39 loc) · 1.39 KB
/
rollback.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Rollback DNS Configuration
on:
workflow_dispatch:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PORKBUN_API_KEY: ${{ secrets.PORKBUN_API_KEY }}
PORKBUN_API_SECRET: ${{ secrets.PORKBUN_API_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
CONFIG_FILE: 'dnsconfig.js'
CREDS_FILE: 'creds.example.json'
jobs:
rollback:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Revert last commit
run: |
git revert HEAD~1 --no-commit
git commit -m "Revert last DNS change"
git push
- name: Get Date
id: get_date
run: echo "::set-output name=report_date::$(date +'%Y-%m-%d')"
- name: Push
id: dnscontrol_push
uses: is-cool-me/[email protected]
with:
args: push --notify --report "./reports/${{ steps.get_date.outputs.report_date }}-ROLLBACK-Report.txt"
config_file: 'dnsconfig.js'
creds_file: 'creds.example.json'
- name: Commit and Push Changes
id: git_commit_push
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
author_email: 'github-actions[bot]@users.noreply.github.com'
author_name: 'github-actions[bot]'
message: 'chore: github action dnscontrol - ${{ steps.get_date.outputs.report_date }}'