Skip to content

Change atomate2 dependency to >=0.0.12 on fairchem-data-omc #5985

Change atomate2 dependency to >=0.0.12 on fairchem-data-omc

Change atomate2 dependency to >=0.0.12 on fairchem-data-omc #5985

Workflow file for this run

name: PR versioning label checking
on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]
jobs:
check-labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Labels not added (patch, minor, major, dependencies)
if: >
contains(github.event.pull_request.labels.*.name, 'patch') == false &&
contains(github.event.pull_request.labels.*.name, 'minor') == false &&
contains(github.event.pull_request.labels.*.name, 'major') == false &&
contains(github.event.pull_request.labels.*.name, 'no-op') == false
run: exit 1
- name: Labels not added (enhancement,bug,test,deprecation,dependencies,documentation,deprecation)
if: >
contains(github.event.pull_request.labels.*.name, 'enhancement') == false &&
contains(github.event.pull_request.labels.*.name, 'bug') == false &&
contains(github.event.pull_request.labels.*.name, 'test') == false &&
contains(github.event.pull_request.labels.*.name, 'deprecation') == false &&
contains(github.event.pull_request.labels.*.name, 'dependencies') == false &&
contains(github.event.pull_request.labels.*.name, 'documentation') == false &&
contains(github.event.pull_request.labels.*.name, 'refactor') == false
run: exit 1