mirror of
https://github.com/ivuorinen/starred.git
synced 2026-01-26 03:04:10 +00:00
Create build.yml
This commit is contained in:
23
.github/workflows/build.yml
vendored
Normal file
23
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: 'build'
|
||||
on:
|
||||
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@v2
|
||||
- uses: luob/create-my-awesome@v1
|
||||
# Commit the change
|
||||
# See https://github.com/EndBug/add-and-commit
|
||||
- uses: EndBug/add-and-commit@v5
|
||||
with:
|
||||
message: 'Update README.md'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
Reference in New Issue
Block a user