-
-
Notifications
You must be signed in to change notification settings - Fork 33
61 lines (50 loc) · 1.71 KB
/
headers.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Headers update
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0" # Runs every Sunday at midnight UTC
permissions:
contents: write # Grants write access to push changes
pull-requests: write # and create PRs
jobs:
run-bash-and-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # to figure out last change to the json file
- uses: fregante/setup-git-user@v2
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Check for new headers on IANA.ORG
run: pnpm tsx tools/headers.ts
- name: Check for changes
id: git-state
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "changes=true" >> $GITHUB_OUTPUT
else
echo "changes=false" >> $GITHUB_OUTPUT
fi
- name: Create branch, commit, and push changes
id: create-branch
if: steps.git-state.outputs.changes == 'true'
run: |
BRANCH_NAME="headers-update-$(date +%Y%m%d)"
echo "branch-name=$BRANCH_NAME" >> $GITHUB_OUTPUT
- name: Create a pull request
if: steps.git-state.outputs.changes == 'true'
uses: peter-evans/create-pull-request@v5
with:
base: master
branch: ${{ steps.create-branch.outputs.branch-name }}
commit-message: "Changed well-known headers"
title: "Well-known headers update"
body: "This PR contains automated updates generated by the weekly workflow."
delete-branch: false