| tag | 721680f2ef20c30ef438b461423564a84719e0a2 | |
|---|---|---|
| tagger | Allen Wittenauer <aw@apache.org> | Tue Mar 04 06:57:45 2025 -0800 |
| object | b90254d79d0e8527ceab6cd59cab5b80e4d7411c |
Release 0.15.1.
| commit | b90254d79d0e8527ceab6cd59cab5b80e4d7411c | [log] [tgz] |
|---|---|---|
| author | Allen Wittenauer <aw@apache.org> | Tue Mar 04 06:57:45 2025 -0800 |
| committer | Allen Wittenauer <aw@apache.org> | Tue Mar 04 06:57:45 2025 -0800 |
| tree | 025823847551a1aa40f388279b639a781b44678e | |
| parent | f27363e817c83823b7ee37bd19eb532a53409d3e [diff] |
YETUS-1253. Tag and release 0.15.1
This action enables Apache Yetus' change testing facilities via GitHub actions without significant configuration. For simple usage (with bleeding edge versions), add the following work flow:
--- name: Apache Yetus on: [push, pull_request] # yamllint disable-line rule:truthy jobs: build: runs-on: ubuntu-latest steps: - name: checkout uses: actions/checkout@v2 with: path: src fetch-depth: 0 - name: Apache Yetus test-patch uses: apache/yetus-test-patch-action@main with: basedir: ./src patchdir: ./out buildtool: nobuild githubtoken: ${{ secrets.GITHUB_TOKEN }} - name: Artifact output if: ${{ always() }} uses: actions/upload-artifact@v2 with: name: apacheyetuspatchdir path: ${{ github.workspace }}/out
For more complex usage or just more information in general, see the Apache Yetus Website.