EES 5629 - Adding a new optional field for the Label
when creating a new Release (FE)
#4123
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
# Workflow to block auto-squash commits (e.g. fixup, amend) | |
# from being merged in via pull requests. | |
# https://andrewlock.net/smoother-rebases-with-auto-squashing-git-commits/ | |
name: Block auto-squash commits | |
on: pull_request | |
permissions: | |
pull-requests: read | |
jobs: | |
block-autosquash: | |
name: Block auto-squash commits | |
runs-on: ubuntu-latest | |
steps: | |
- name: Block auto-squash commits | |
uses: xt0rted/block-autosquash-commits-action@87d56ca2c3f01b9247504ead67a1a3c2ca62b030 | |
with: | |
repo-token: ${{ secrets.GH_TOKEN }} |