diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..22194d1 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: [penguineer] diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..f4d8d3b --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,53 @@ +name: Docker Image + +on: + push: + branches: + - 'master' + tags: + - 'v*' + pull_request: + branches: + - 'master' + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Docker meta + id: meta + uses: docker/metadata-action@v3 + with: + images: mrtux/redmine-actionables-collector + tags: | + # 1.2.3 + type=semver,pattern={{version}} + # disabled if major zero + type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }} + # generate lates from default branch + type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + + - name: Login to DockerHub + if: github.event_name != 'pull_request' + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + platforms: linux/amd64,linux/arm64,linux/arm/v7 + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..9e772d6 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,34 @@ +name: Create Release + +on: + push: + tags: + - "v*" + +jobs: + build: + name: "Release" + runs-on: ubuntu-18.04 + steps: + - name: "Check-out" + uses: actions/checkout@v3 + - name: "Generate release changelog" + id: generate-release-changelog + uses: heinrichreimer/github-changelog-generator-action@v2.3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + onlyLastTag: "true" # set to false if no tags exist (buggy with only one tag) + stripHeaders: "true" + stripGeneratorNotice: "true" + - name: Extract the VERSION name + id: get-version + run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/} + - name: "Create GitHub release" + uses: softprops/action-gh-release@v1 + with: + tag_name: ${{ github.ref }} + name: "${{ steps.get-version.outputs.VERSION }}" + body: "${{ steps.generate-release-changelog.outputs.changelog }}" + prerelease: ${{ startsWith(steps.get-version.outputs.VERSION, 'v0.') }} + token: ${{ secrets.GITHUB_TOKEN }} + draft: True diff --git a/README.md b/README.md index 40fe40f..f4af27b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Redmine Actionables +![Docker Image](https://github.com/penguineer/RedmineActionablesCollector/actions/workflows/docker-image.yml/badge.svg) + + An item is actionable when its action can be executed without further prerequesites. A Redmine ticket is classified as actionable, when the following apply: