Skip to content

Commit

Permalink
attempt different branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dochne committed Oct 29, 2023
1 parent 8a9736c commit e63f47d
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Create our Weekly Meeting notes issue
# on:
# schedule:
# - cron: '0 14 * * 1'
on:
push:
branches:
- doug-cron

permissions:
contents: write

jobs:
commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Foo"
run: "echo 'Fooo' > foo.txt"

- name: "Git Add"
run: "git add --all"

- name: "Commit"
run: git -c user.name="Doug Nelson" -c user.email="water@dochne.com" 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

0 comments on commit e63f47d

Please sign in to comment.