EES-4932 Bulk import: allow users to import multiple data sets from a single zip file #1468
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
# 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 }} |