attempt different branch #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create our Weekly Meeting notes issue | |
# on: | |
# schedule: | |
# - cron: '0 14 * * 1' | |
on: | |
push: | |
branches: | |
- doug-cron | |
jobs: | |
issue: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Foo" | |
run: "echo 'Fooo' > foo.txt" | |
# - name: "NPM install" | |
# run: npm install | |
# - name: "Run update" | |
# run: node update.js | |
- name: "Commit" | |
run: git commit -m "updated database.db" | |
- name: "Push" | |
run: git push | |
# - uses: JasonEtco/create-an-issue@v2 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# filename: .github/ISSUE_TEMPLATE/meeting-notes.md |