Merge pull request #95 from t4d-gmbh/release-0.7.2 #40
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: Runs on non-release pull requests | |
on: | |
push: | |
branches-ignore: | |
- "release-[0-9]+.[0-9]+.[0-9]+" | |
env: | |
LABEL_PUBLISHED: 'release::published' | |
jobs: | |
development_checks: | |
if: github.ref != 'refs/heads/main' | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # NOTE: This might be needed to assert that we get the full history | |
# for the changelog. | |
- name: Smoke test | |
run: | | |
echo "Hello there!" |