diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000000..9c9b87b7cd8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,43 @@ +name: 💡 New feature +description: Enhancements to the code +title: "Add ..." +labels: ["enhancement"] +assignees: [""] + +body: + + - type: markdown + attributes: + value: '# 📝 **New Feature**' + + - type: textarea + id: feature-description + attributes: + label: Description of the feature + placeholder: Describe what feature you devised and why it is useful for the project + validations: + required: true + + - type: markdown + attributes: + value: '# 💡 **Implementation**' + + - type: textarea + id: implementation-description + attributes: + label: Steps for implementing the feature + placeholder: Describe how this new feature can be implemented + validations: + required: false + + - type: markdown + attributes: + value: '# 🔗 **References**' + + - type: textarea + id: references + attributes: + label: Useful links and references + placeholder: A list of links and references to help when implementing the feature + validations: + required: false \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 967192e5a92..e4ba452ff31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,10 @@ on: - master - "release*" +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + env: PYANSYS_OFF_SCREEN: True DPF_PORT: 32772 diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 37c1c3922a4..d63a314fab6 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -12,6 +12,10 @@ on: - master - "release*" +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: build: runs-on: ubuntu-20.04