- 
                Notifications
    You must be signed in to change notification settings 
- Fork 16
feat: add automated release and labelling #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| autolabeler: | ||
| - label: 'automation' | ||
| title: | ||
| - '/^(build|ci|perf|refactor|test).*/i' | ||
| - label: 'enhancement' | ||
| title: | ||
| - '/^(chore|style).*/i' | ||
| - label: 'documentation' | ||
| title: | ||
| - '/^docs.*/i' | ||
| - label: 'feature' | ||
| title: | ||
| - '/^feat.*/i' | ||
| - label: 'fix' | ||
| title: | ||
| - '/^fix.*/i' | ||
| - label: 'infrastructure' | ||
| title: | ||
| - '/^infrastructure.*/i' | ||
| - label: 'revert' | ||
| title: | ||
| - '/^revert.*/i' | 
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| --- | ||
| name: Auto Labeler | ||
|  | ||
| on: | ||
| # pull_request event is required only for autolabeler | ||
| pull_request: | ||
| # Only following types are handled by the action, but one can default to all as well | ||
| types: [opened, reopened, synchronize] | ||
| # pull_request_target event is required for autolabeler to support PRs from forks | ||
| pull_request_target: | ||
| types: [opened, reopened, synchronize] | ||
|  | ||
| permissions: | ||
| contents: read | ||
|  | ||
| jobs: | ||
| main: | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
| name: Auto label pull requests | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: release-drafter/release-drafter@v6 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| config-name: auto-labeler.yml | 
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| ## Reference: https://github.com/amannn/action-semantic-pull-request | ||
|         
                  jmeridth marked this conversation as resolved.
              Show resolved
            Hide resolved | ||
| --- | ||
| name: "Lint PR" | ||
|  | ||
| on: | ||
| pull_request_target: | ||
| types: | ||
| - opened | ||
| - edited | ||
| - synchronize | ||
|  | ||
| permissions: | ||
| contents: read | ||
|  | ||
| jobs: | ||
| main: | ||
| permissions: | ||
| pull-requests: read | ||
| statuses: write | ||
| name: Validate PR title | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: amannn/action-semantic-pull-request@v5 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| # Configure which types are allowed (newline-delimited). | ||
| # From: https://github.com/commitizen/conventional-commit-types/blob/master/index.json | ||
| # listing all below | ||
| types: | | ||
| build | ||
| chore | ||
| ci | ||
| docs | ||
| feat | ||
| fix | ||
| perf | ||
| refactor | ||
| revert | ||
| style | ||
| test | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| --- | ||
| name: Release | ||
|  | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
|  | ||
| permissions: | ||
| contents: read | ||
|  | ||
| jobs: | ||
| create_release: | ||
| outputs: | ||
| full-tag: ${{ steps.release-drafter.outputs.tag_name }} | ||
| short-tag: ${{ steps.get_tag_name.outputs.SHORT_TAG }} | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
| pull-requests: read | ||
| steps: | ||
| - uses: release-drafter/release-drafter@v6 | ||
| id: release-drafter | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| config-name: release-drafter.yml | ||
| publish: true | ||
| - name: Get the short tag | ||
| id: get_tag_name | ||
| run: | | ||
| short-tag=$(echo ${{ steps.release-drafter.outputs.tag_name }} | cut -d. -f1) | ||
| echo "SHORT_TAG=$short-tag" >> $GITHUB_OUTPUT | ||
| create_action_images: | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @zkoppert this is the new image build and deploy stuff, utilizing the tags generated by release-drafter | ||
| needs: create_release | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| packages: write | ||
| env: | ||
| REGISTRY: ghcr.io | ||
| IMAGE_NAME: ${{ github.repository }} | ||
| steps: | ||
| - name: Set up Docker Buildx | ||
| uses: docker/setup-buildx-action@v3 | ||
| - name: Log in to the Container registry | ||
| uses: docker/login-action@v3 | ||
| with: | ||
| registry: ${{ env.REGISTRY }} | ||
| username: ${{ github.actor }} | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Who would github.actor be in this case?  There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe so, yes. | ||
| password: ${{ secrets.GITHUB_TOKEN }} | ||
| - name: Push Docker Image | ||
| if: ${{ success() }} | ||
| uses: docker/build-push-action@v5 | ||
| with: | ||
| context: . | ||
| file: ./Dockerfile | ||
| push: true | ||
| tags: | | ||
| ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest | ||
| ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.create_release.outputs.full-tag }} | ||
| ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.create_release.outputs.short-tag }} | ||
| platforms: linux/amd64,linux/arm64 | ||
| provenance: false | ||
| sbom: false | ||
Uh oh!
There was an error while loading. Please reload this page.