6dedaabe38
Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com> test commit 1 Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com> test2 Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com> test3 Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com> test4 Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com> test5 Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com> test6 Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com>
26 lines
681 B
YAML
26 lines
681 B
YAML
name: Cache Busting
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "testing"
|
|
pull_request:
|
|
branches: [main, testing]
|
|
types: [opened, synchronize, closed]
|
|
|
|
jobs:
|
|
update_hashes:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
- name: Update hashes in html files
|
|
run: bash .devtools/updatehashes.sh
|
|
- name: Commit
|
|
uses: EndBug/add-and-commit@v9.1.1
|
|
with:
|
|
author_name: Github Actions
|
|
author_email: victorseijih@gmail.com # Using my email here for now...
|
|
message: "Fixed resource hashes"
|