This is an automated email from the ASF dual-hosted git repository. wave pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/petri.git
The following commit(s) were added to refs/heads/master by this push: new bb10799 Workflows should be on the default branch bb10799 is described below commit bb10799bb78d7d3c5217cfb11c62780cf0be09af Author: Dave Fisher <dave2w...@comcast.net> AuthorDate: Thu May 30 15:15:59 2024 -0700 Workflows should be on the default branch --- .github/workflows/build-pelican.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/build-pelican.yml b/.github/workflows/build-pelican.yml new file mode 100644 index 0000000..1d84c8f --- /dev/null +++ b/.github/workflows/build-pelican.yml @@ -0,0 +1,19 @@ +name: build-pelican +on: + workflow_dispatch: + inputs: + branch: + description: 'Pelican source branch' + required: true + default: 'dfoulks/pelican-gha' +jobs: + build-pelican: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ github.event.inputs.branch }} + - uses: apache/infrastructure-actions/pelican@main + with: + destination: ${{ github.event.inputs.branch }}-site + gfm: true