forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'koppor:main' into main
- Loading branch information
Showing
17 changed files
with
143 additions
and
128 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
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 |
---|---|---|
|
@@ -10,25 +10,47 @@ on: | |
jobs: | ||
assign: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Assign the user or unassign stale assignments | ||
uses: takanome-dev/[email protected] | ||
id: assign | ||
uses: takanome-dev/assign-issue-action@beta | ||
with: | ||
github_token: '${{ secrets.GITHUB_TOKEN }}' | ||
days_until_unassign: 30 | ||
maintainers: koppor, Siedlerchr, ThiloteE, calixtus, HoussemNasri | ||
assigned_comment: | | ||
👋 Hey @{{ comment.user.login }}, | ||
👋 Hey @{{ handle }}, thank you for your interest in this issue! 🎉 | ||
Thanks for your interest in this issue! 🎉 | ||
Newcomers, we're excited to have you on board. Start by exploring our [Contributing](https://github.com/JabRef/jabref/blob/main/CONTRIBUTING.md) guidelines, and don't forget to check out our [workspace setup guidelines](https://devdocs.jabref.org/getting-into-the-code/guidelines-for-setting-up-a-local-workspace) to get started smoothly. | ||
We're excited to have you on board. Start by exploring our [Contributing](https://github.com/JabRef/jabref/blob/main/CONTRIBUTING.md) guidelines, and don't forget to check out our [workspace setup guidelines](https://devdocs.jabref.org/getting-into-the-code/guidelines-for-setting-up-a-local-workspace) to get started smoothly. | ||
In case you encounter failing tests during development, please check our [developer FAQs](https://devdocs.jabref.org/code-howtos/faq.html)! | ||
Having any questions or issues? Feel free to ask here on GitHub. Need help setting up your local workspace? Join the conversation on [JabRef's Gitter chat](https://gitter.im/JabRef/jabref). And don't hesitate to open a (draft) pull request early on to show the direction it is heading towards. This way, you will receive valuable feedback. | ||
⚠ Note that this issue will become unassigned if it isn't closed within **{{ totalDays }} days**. | ||
🔧 A maintainer can also add the **{{ inputs.pin_label }}** label to prevent it from being unassigned automatically. | ||
Happy coding! 🚀 | ||
⏳ Please note, you will be automatically unassigned if the issue isn't closed within **{{ total_days }} days** (by **{{ unassigned_date }}**). A maintainer can also add the "**{{ pin_label }}**"" label to prevent automatic unassignment. | ||
- name: Move Issue to "Assigned" Column in "Candidates for University Projects" | ||
if: steps.assign.outputs.assigned == 'yes' | ||
uses: m7kvqbe1/github-action-move-issues@feat/skip-if-not-in-project-flag | ||
with: | ||
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }} | ||
project-url: "https://github.com/orgs/JabRef/projects/3" | ||
target-labels: "📍 Assigned" | ||
target-column: "Assigned" | ||
ignored-columns: "" | ||
default-column: "Free to take" | ||
skip-if-not-in-project: true | ||
- name: Move Issue to "Assigned" Column in "Good First Issues" | ||
if: steps.assign.outputs.assigned == 'yes' | ||
uses: m7kvqbe1/github-action-move-issues@feat/skip-if-not-in-project-flag | ||
with: | ||
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }} | ||
project-url: "https://github.com/orgs/JabRef/projects/5" | ||
target-labels: "📍 Assigned" | ||
target-column: "Assigned" | ||
ignored-columns: "" | ||
default-column: "Free to take" | ||
skip-if-not-in-project: true |
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 |
---|---|---|
|
@@ -31,44 +31,25 @@ jobs: | |
Happy coding! 🚀 | ||
- name: Move Issue to "Assigned" Column in "Candidates for University Projects" | ||
uses: m7kvqbe1/github-action-move-issues@v1.1.1 | ||
uses: m7kvqbe1/github-action-move-issues@feat/skip-if-not-in-project-flag | ||
with: | ||
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }} | ||
project-url: "https://github.com/orgs/JabRef/projects/3" | ||
target-labels: "FirstTimeCodeContribution" | ||
target-column: "Assigned" | ||
ignored-columns: "" | ||
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }} | ||
project-url: "https://github.com/orgs/JabRef/projects/3" | ||
target-labels: "📍 Assigned" | ||
target-column: "Assigned" | ||
ignored-columns: "" | ||
default-column: "Free to take" | ||
skip-if-not-in-project: true | ||
- name: Move Issue to "Assigned" Column in "Good First Issues" | ||
uses: m7kvqbe1/github-action-move-issues@v1.1.1 | ||
uses: m7kvqbe1/github-action-move-issues@feat/skip-if-not-in-project-flag | ||
with: | ||
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }} | ||
project-url: "https://github.com/orgs/JabRef/projects/5" | ||
target-labels: "FirstTimeCodeContribution" | ||
target-column: "Assigned" | ||
ignored-columns: "" | ||
Assigned: | ||
name: "📍 Assigned" | ||
if: ${{ github.event.label.name == '📍 Assigned' }} | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Move Issue to "Assigned" Column in "Candidates for University Projects" | ||
uses: m7kvqbe1/[email protected] | ||
with: | ||
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }} | ||
project-url: "https://github.com/orgs/JabRef/projects/3" | ||
target-labels: "📍 Assigned" | ||
target-column: "Assigned" | ||
ignored-columns: "" | ||
- name: Move Issue to "Assigned" Column in "Good First Issues" | ||
uses: m7kvqbe1/[email protected] | ||
with: | ||
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }} | ||
project-url: "https://github.com/orgs/JabRef/projects/5" | ||
target-labels: "📍 Assigned" | ||
target-column: "Assigned" | ||
ignored-columns: "" | ||
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }} | ||
project-url: "https://github.com/orgs/JabRef/projects/5" | ||
target-labels: "📍 Assigned" | ||
target-column: "Assigned" | ||
ignored-columns: "" | ||
default-column: "Free to take" | ||
skip-if-not-in-project: true | ||
good-first-issue: | ||
name: "good first issue" | ||
if: "${{ github.event.label.name == 'good first issue' }}" | ||
|
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,17 @@ | ||
name: On reviewed PR | ||
|
||
on: | ||
pull_request_review: | ||
types: | ||
- submitted | ||
|
||
jobs: | ||
add-label-changes-required: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: | | ||
gh pr edit "$PR_URL" --remove-label "status: ready-for-review" | ||
gh pr edit "$PR_URL" --add-label "status: changes required" | ||
env: | ||
PR_URL: ${{github.event.pull_request.html_url}} | ||
GH_TOKEN: ${{secrets.GH_TOKEN_UPDATE_GRADLE_WRAPPER}} |
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
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
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
Oops, something went wrong.