fix: login to ghcr in pipeline #266
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Enforce commit linting | |
on: | |
pull_request: | |
types: [labeled, unlabeled, opened, edited, synchronize] | |
jobs: | |
commitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Install earthly | |
uses: earthly/actions-setup@v1 | |
with: | |
version: v0.7.21 | |
- name: Lint commit message | |
run: | | |
make commitlint | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |