Skip to content

Workflow file for this run

on:
push:
paths:
- '.github/workflows/deploy-test.yml'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
deployments: write
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.WORKFLOW_PAT }}
submodules: true
fetch-depth: 0
- name: Save scheduled discord pings
run: |
echo -e "name: \"workflow\"\non: workflow_dispatch2" > .github/workflows/date.yml
# Note: the following account information will not work on GHES
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "generated"
git push