Skip to content

Commit

Permalink
Create ScheduledTask.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Moonbeam69 authored Apr 11, 2024
1 parent 809362e commit 7dbf576
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ScheduledTask.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Scheduled task

on:
schedule:
- cron: '0/5 * * * *'

jobs:
echo:
runs-on: [ self-hosted ]
steps:
- name: Echo works
run:
echo "Hello world"

0 comments on commit 7dbf576

Please sign in to comment.