From d4793e21154fe96a8c2322e8936386a6277b1abc Mon Sep 17 00:00:00 2001 From: Andrew Thal <467872+athal7@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:45:15 -0500 Subject: [PATCH] Update pizza-action.yaml --- .github/workflows/pizza-action.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/pizza-action.yaml diff --git a/.github/workflows/pizza-action.yaml b/.github/workflows/pizza-action.yaml new file mode 100644 index 0000000..f2ce387 --- /dev/null +++ b/.github/workflows/pizza-action.yaml @@ -0,0 +1,21 @@ +name: OpenSauced Pizza Action + +on: + schedule: + # Run once a week on Sunday at 00:00 UTC + - cron: "0 0 * * 0" + workflow_dispatch: # Allow manual triggering + +jobs: + pizza-action: + runs-on: ubuntu-latest + steps: + - name: Pizza Action + uses: open-sauced/pizza-action@v1.0.0 + with: + # optional and default is "latest". Add this parameter if you want to use a specific version, e.g. v2.0.0 + cli-version: "v2.1.0" + # optional and false by default. Set this to true if you want to have a pull request for the changes created automatically. + commit-and-pr: "true" + # optional + pr-title: "chore: update repository codeowners" \ No newline at end of file