-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from ansys/maint/release_0.1.1
Release 0.1.1
- Loading branch information
Showing
59 changed files
with
1,381 additions
and
858 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
documentation: | ||
- changed-files: | ||
- any-glob-to-any-file: ['doc/source/**/*'] | ||
maintenance: | ||
- changed-files: | ||
- any-glob-to-any-file: ['.github/**/*', '.flake8', 'pyproject.toml'] | ||
dependencies: | ||
- changed-files: | ||
- any-glob-to-any-file: ['poetry\.lock'] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
- name: bug | ||
description: Something isn't working | ||
color: d42a34 | ||
|
||
- name: dependencies | ||
description: Related with project dependencies | ||
color: ffc0cb | ||
|
||
- name: documentation | ||
description: Improvements or additions to documentation | ||
color: 0677ba | ||
|
||
- name: enhancement | ||
description: New features or code improvements | ||
color: FFD827 | ||
|
||
- name: good first issue | ||
description: Easy to solve for newcomers | ||
color: 62ca50 | ||
|
||
- name: maintenance | ||
description: Package and maintenance related | ||
color: f78c37 | ||
|
||
- name: release | ||
description: Anything related to an incoming release | ||
color: ffffff |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
name: Labeler | ||
on: | ||
pull_request: | ||
# opened, reopened, and synchronize are default for pull_request | ||
# edited - when PR title or body is changed | ||
# labeled - when labels are added to PR | ||
types: [opened, reopened, synchronize, edited, labeled] | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- '../labels.yml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
label-syncer: | ||
name: Syncer | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: micnncim/action-label-syncer@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
labeler: | ||
name: Set labels | ||
needs: [label-syncer] | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
# Label based on modified files | ||
- name: Label based on changed files | ||
uses: actions/labeler@v5 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Label based on branch name | ||
- uses: actions-ecosystem/action-add-labels@v1 | ||
if: | | ||
startsWith(github.event.pull_request.head.ref, 'doc') || | ||
startsWith(github.event.pull_request.head.ref, 'docs') | ||
with: | ||
labels: documentation | ||
|
||
- uses: actions-ecosystem/action-add-labels@v1 | ||
if: | | ||
startsWith(github.event.pull_request.head.ref, 'maint') || | ||
startsWith(github.event.pull_request.head.ref, 'no-ci') || | ||
startsWith(github.event.pull_request.head.ref, 'ci') | ||
with: | ||
labels: maintenance | ||
|
||
- uses: actions-ecosystem/action-add-labels@v1 | ||
if: startsWith(github.event.pull_request.head.ref, 'feat') | ||
with: | ||
labels: | | ||
enhancement | ||
- uses: actions-ecosystem/action-add-labels@v1 | ||
if: | | ||
startsWith(github.event.pull_request.head.ref, 'fix') || | ||
startsWith(github.event.pull_request.head.ref, 'patch') | ||
with: | ||
labels: bug | ||
|
||
commenter: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Suggest to add labels | ||
uses: peter-evans/create-or-update-comment@v4 | ||
# Execute only when no labels have been applied to the pull request | ||
if: toJSON(github.event.pull_request.labels.*.name) == '{}' | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
Please add one of the following labels to add this contribution to the Release Notes :point_down: | ||
- [bug](https://github.com/ansys/ansys-tools-local-product-launcher/pulls?q=label%3Abug+) | ||
- [documentation](https://github.com/ansys/ansys-tools-local-product-launcher/pulls?q=label%3Adocumentation+) | ||
- [enhancement](https://github.com/ansys/ansys-tools-local-product-launcher/pulls?q=label%3Aenhancement+) | ||
- [good first issue](https://github.com/ansys/ansys-tools-local-product-launcher/pulls?q=label%3Agood+first+issue) | ||
- [maintenance](https://github.com/ansys/ansys-tools-local-product-launcher/pulls?q=label%3Amaintenance+) | ||
- [release](https://github.com/ansys/ansys-tools-local-product-launcher/pulls?q=label%3Arelease+) | ||
changelog-fragment: | ||
name: "Create changelog fragment" | ||
needs: [labeler] | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: ansys/actions/doc-changelog@v8 | ||
with: | ||
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }} | ||
bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }} | ||
bot-email: ${{ secrets.PYANSYS_CI_BOT_EMAIL }} |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
# CHANGELOG | ||
# CHANGELOG | ||
|
||
This project uses [towncrier](https://towncrier.readthedocs.io/) and the changes for the upcoming release can be found in <https://github.com/ansys/ansys-tools-filetransfer/tree/main/doc/changelog.d/>. | ||
|
||
<!-- towncrier release notes start --> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
# Contributors | ||
|
||
## Project Lead or Owner | ||
## Project Lead | ||
|
||
* [Dominik Gresch](https://github.com/greschd) | ||
|
||
## Individual Contributors | ||
|
||
* [Alex Kaszynski](https://github.com/akaszynski) | ||
* [Dominik Gresch](https://github.com/greschd) | ||
* [Kathy Pippert](https://github.com/PipKat) | ||
* [Jorge Martínez](https://github.com/jorgepiloto) | ||
* [Roberto Pastor Muela](https://github.com/RobPasMue) | ||
* [Udo Tremel](https://github.com/ansutremel) |
Oops, something went wrong.