mirror of
https://github.com/juanfont/headscale.git
synced 2025-01-19 02:10:04 +09:00
697d80d5a8
Some checks are pending
Build / build-nix (push) Waiting to run
Build / build-cross (GOARCH=386 GOOS=linux) (push) Waiting to run
Build / build-cross (GOARCH=amd64 GOOS=darwin) (push) Waiting to run
Build / build-cross (GOARCH=amd64 GOOS=linux) (push) Waiting to run
Build / build-cross (GOARCH=arm GOOS=linux GOARM=5) (push) Waiting to run
Build / build-cross (GOARCH=arm GOOS=linux GOARM=6) (push) Waiting to run
Build / build-cross (GOARCH=arm GOOS=linux GOARM=7) (push) Waiting to run
Build / build-cross (GOARCH=arm64 GOOS=darwin) (push) Waiting to run
Build / build-cross (GOARCH=arm64 GOOS=linux) (push) Waiting to run
Tests / test (push) Waiting to run
* chore: configure some actions to be skipped for forks * chore: build docs only when it changes
23 lines
610 B
YAML
23 lines
610 B
YAML
name: GitHub Actions Version Updater
|
|
|
|
on:
|
|
schedule:
|
|
# Automatically run on every Sunday
|
|
- cron: "0 0 * * 0"
|
|
|
|
jobs:
|
|
build:
|
|
if: github.repository == 'juanfont/headscale'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
# [Required] Access token with `workflow` scope.
|
|
token: ${{ secrets.WORKFLOW_SECRET }}
|
|
|
|
- name: Run GitHub Actions Version Updater
|
|
uses: saadmk11/github-actions-version-updater@v0.8.1
|
|
with:
|
|
# [Required] Access token with `workflow` scope.
|
|
token: ${{ secrets.WORKFLOW_SECRET }}
|