mirror of
https://github.com/tailscale/github-action.git
synced 2026-08-21 06:19:22 +00:00
We periodically have reports of failures in the GitHub Action where there has been no recent change in Tailscale infrastructure and no indication of a problem in metrics or monitoring. Right now we have to generate a pull request to get this test workflow to run. Allow it to be run manually whenever desired. Signed-off-by: Denton Gentry <dgentry@tailscale.com>
28 lines
542 B
YAML
28 lines
542 B
YAML
name: tailscale
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Tailscale Action
|
|
uses: ./
|
|
with:
|
|
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
|
|
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
|
|
tags: tag:ci
|
|
|
|
- name: check for hello.ts.net in netmap
|
|
run:
|
|
tailscale status | grep -q hello
|