DEV Community

Ghani Rafif
Ghani Rafif

Posted on

September

My Workflow

This github action just check if date is 21st september or not. If true then change all files with September lyric.

Submission Category:

Wacky Wildcards

Yaml File or Link to Code

on:
  push:
    branches: master
  schedule:
    - cron: '30 17 * * *'

jobs:
  build:
    name: September
    runs-on: ubuntu-latest
    env:
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    steps:
      - uses: actions/checkout@v2
      - name: September action
        uses: ekickx/september@master 

Top comments (0)