add auto run on push for now #2
Workflow file for this run
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: Save tag statistics | |
on: | |
push: | |
branches: ["mandar1jn/stats-workflow"] | |
workflow_dispatch: | |
inputs: | |
weekYear: | |
description: the week and year that the stats are from | |
required: true | |
type: string | |
data: | |
description: the JSON-encoded data | |
required: true | |
type: string | |
jobs: | |
save: | |
name: Save | |
runs-on: ubuntu-latest | |
steps: | |
- name: echo | |
run: echo "hello" |