DM-51385: Fix M1M3 thermal scanner 3 position values #777
Workflow file for this run
This file contains hidden or 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: ChangelogUpdated | |
on: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened, labeled, unlabeled] | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Check for new news fragments | |
runs-on: ubuntu-latest | |
if: ${{ !startsWith(github.head_ref, 'dependabot/') }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install towncrier | |
run: | | |
$CONDA/bin/conda install -c conda-forge towncrier=23 -y | |
- name: Run towncrier check command | |
run: | | |
$CONDA/bin/towncrier check --compare-with origin/develop | |