Skip to content

AUVSL/shared_workflows

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 

Repository files navigation

Resuable workflows for Python Files

This repository contains the reusable workflows for AUVSL. To build around the workflows in this repo, create a .github/workflows folder in your repo and follow this template:

name: <workflow name>

on: [push, pull_request, workflow_dispatch, workflow_call]

permissions:
  contents: write

concurrency:
  group: ${{ github.ref }}
  cancel-in-progress: true

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - run: echo "Trigger by ${{ github.actor }} with ${{ github.event_name }} event"
  <workflow name>:
    needs: build
    uses: AUVSL/shared_workflows/.github/workflows/<desired workflow>.yml@main
    with:
      run-name: '<desired message>'
    secrets:
      GH_PAT: ${{ secrets.GH_PAT }}

Resetting GitHub Pages DNS Cache

To see instantaneous changes to the website you can just apped to the end of your Pages URL the query /?version=f36af92 which will cause the GitHub DNS to rerun

Releases

No releases published

Packages

No packages published