You've already forked htmluibuild
mirror of
https://github.com/kopia/htmluibuild.git
synced 2026-02-02 12:53:46 -08:00
27 lines
680 B
YAML
27 lines
680 B
YAML
name: After Push
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
tests:
|
|
name: Make Kopia PR
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Go
|
|
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
check-latest: true
|
|
id: go
|
|
- name: Make PR to kopia/kopia
|
|
run: ./tools/make-pr.sh
|
|
env:
|
|
GH_TOKEN: ${{ secrets.MAKE_PR_GH_TOKEN }}
|