-
Notifications
You must be signed in to change notification settings - Fork 13
Add workflows #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
RayStick
wants to merge
3
commits into
mkdocs
Choose a base branch
from
add-workflows
base: mkdocs
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add workflows #52
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,26 @@ | ||
| # Configuration for welcome - https://github.com/behaviorbot/welcome | ||
|
|
||
| # Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome | ||
|
|
||
| # Comment to be posted to on first time issues | ||
| newIssueWelcomeComment: > | ||
|  | ||
|
|
||
| 🎉 Thank you for opening your first issue in this Physiopy repo! Please check our [contributor guide](https://physiopy.github.io/contributors-guide/) and follow the issue template. | ||
|
|
||
| # Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome | ||
|
|
||
| # Comment to be posted to on PRs from first time contributors in your repository | ||
| newPRWelcomeComment: > | ||
|  | ||
|
|
||
| 🎉 Thanks for opening your first pull request in this Physiopy repo! Please check our [contributor guide](https://physiopy.github.io/contributors-guide/) and follow the PR template. | ||
|
|
||
| # Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge | ||
|
|
||
| # Comment to be posted to on pull requests merged by a first time user | ||
| firstPRMergeComment: > | ||
|  | ||
|
|
||
| 🎉 Congrats on merging your first pull request in this repo! We appreciate your contribution to the Physiopy community! | ||
| :eyes: Please check that your contribution is correctly reported in the repo's README and on Physiopy's website! | ||
This file contains hidden or 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,11 @@ | ||
| Documentation: | ||
| - changed-files: | ||
| - any-glob-to-any-file: ['docs/*', '.readthedocs.yml', 'README.md', 'LICENSE', 'MANIFEST.in'] | ||
|
|
||
| Internal: | ||
| - changed-files: | ||
| - any-glob-to-any-file: ['.*', 'codecov.yml', 'setup.cfg', 'setup.py', 'versioneer.py', '.github/*', '.circleci/*', ' physiopy.github.io/_version.py', 'requirements.txt', 'pyproject.toml'] | ||
|
|
||
| Testing: | ||
| - changed-files: | ||
| - any-glob-to-any-file: [' physiopy.github.io/tests/*', '.circleci/*'] |
This file contains hidden or 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,17 @@ | ||
| name: Auto Author Assign | ||
|
|
||
| on: | ||
| issues: | ||
| types: [ opened, reopened ] | ||
| pull_request_target: | ||
| types: [ opened, reopened ] | ||
|
|
||
| permissions: | ||
| pull-requests: write | ||
| issues: write | ||
|
|
||
| jobs: | ||
| assign-author: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: toshimaru/[email protected] |
This file contains hidden or 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,15 @@ | ||
| name: auto-label | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }} | ||
| cancel-in-progress: true | ||
| on: # yamllint disable-line rule:truthy | ||
| pull_request_target | ||
|
|
||
| jobs: | ||
| pr: | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/labeler@v5 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we add the hyperlink to the Physiopy website home page ?
https://physiopy.github.io/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see add link