Files
starred/.github/workflows/build.yml
2025-12-03 20:19:41 +02:00

25 lines
715 B
YAML

name: 'build'
on:
workflow_dispatch:
push:
branches:
- main
schedule:
# This expression means every day at UTC 00:00
# See https://crontab.guru/examples.html for more examples
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: luob/create-my-awesome@c8d292d1422d0146b57bd69237c84d1802c3d353 # v1
# Commit the change
# See https://github.com/EndBug/add-and-commit
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
with:
message: 'Update README.md'
env:
GITHUB_TOKEN: ${{ github.token }}