-
Notifications
You must be signed in to change notification settings - Fork 324
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
fix labeler + automaticaly add to GH project #4037
base: main
Are you sure you want to change the base?
Conversation
uses: AlexanderWert/issue-labeler@32be4a3c3d8f009c2741af471994337c34b4cb6f # v2.3 | ||
with: | ||
script: | | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ["agent-java"] | ||
}) | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/java-label.yml | ||
enable-versioned-regex: 0 |
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.
[for reviewer] this part failed, so switching to the same pattern we have elsewhere for example in the android agent seem to work. Also, I wonder if we could/should replace the current version as it relies on Alex repository.
.github/workflows/labeler.yml
Outdated
- name: Check team membership for user | ||
uses: elastic/[email protected] | ||
id: checkUserMember | ||
with: | ||
github-org: "elastic" | ||
github-user: ${{ github.actor }} | ||
github-token: ${{ steps.get_token.outputs.token }} | ||
username: ${{ github.actor }} | ||
team: 'apm' | ||
usernamesToExclude: | | ||
apmmachine | ||
dependabot | ||
dependabot[bot] | ||
GITHUB_TOKEN: ${{ steps.get_token.outputs.token }} | ||
|
||
- name: Show team membership | ||
run: | | ||
echo "::debug::isTeamMember: ${{ steps.checkUserMember.outputs.isTeamMember }}" | ||
echo "::debug::isExcluded: ${{ steps.checkUserMember.outputs.isExcluded }}" | ||
|
||
- name: Add community and triage labels | ||
if: contains(steps.is_elastic_member.outputs.result, 'false') && github.actor != 'dependabot[bot]' && github.actor != 'elastic-renovate-prod[bot]' && github.actor != 'elastic-observability-automation[bot]' | ||
uses: actions/github-script@v7 | ||
if: steps.checkUserMember.outputs.isTeamMember != 'true' && steps.checkUserMember.outputs.isExcluded != 'true' | ||
uses: AlexanderWert/issue-labeler@32be4a3c3d8f009c2741af471994337c34b4cb6f # v2.3 | ||
with: | ||
script: | | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ["community", "triage"] | ||
}) | ||
- name: Add comment for community PR | ||
if: contains(steps.is_elastic_member.outputs.result, 'false') && github.actor != 'dependabot[bot]' && github.actor != 'elastic-renovate-prod[bot]' && github.actor != 'elastic-observability-automation[bot]' | ||
uses: wow-actions/auto-comment@2fc064c21cfb2505de3c5c10e1473b8eb7beca1a # v1.1.2 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
pullRequestOpened: | | ||
👋 @{{ author }} Thanks a lot for your contribution! | ||
|
||
It may take some time before we review a PR, so even if you don’t see activity for some time, it **does not** mean that we have forgotten about it. | ||
|
||
Every once in a while we go through a process of prioritization, after which we are focussing on the tasks that were planned for the upcoming [milestone](https://github.com/elastic/apm-agent-java/milestones). The prioritization status is typically reflected through the PR labels. It could be pending triage, a candidate for a future milestone, or have a target milestone set to it. | ||
- name: Assign new internal pull requests to project | ||
uses: elastic/[email protected] | ||
if: contains(steps.is_elastic_member.outputs.result, 'true') && github.event.pull_request | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/community-label.yml | ||
enable-versioned-regex: 0 |
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.
[for reviewer] this part is a copy-paste from android agent repo.
draft PR to add those to global github actions and make it easier to reuse elastic/oblt-actions#260 |
status_field_json=$(gh api graphql -f query='query($project_id:ID!){ node(id:$project_id){ ... on ProjectV2 { fields(first:20) { nodes { ... on ProjectV2SingleSelectField { id name options { id name } } } } } } }' --jq '.data.node.fields.nodes[]|select(.name=="Status")' -F project_id=${project_id}) | ||
status_field_id=$( echo "$status_field_json" | jq -r '.id' ) | ||
status_field_value_id=$( echo "$status_field_json" | jq -r ".options[]|select(.name==\"${STATUS}\")|.id" ) | ||
gh project item-edit --id "${item_id}" --project-id "${project_id}" --field-id "${status_field_id}" --single-select-option-id "${status_field_value_id}" | ||
|
||
agent_field_json=$(gh api graphql -f query='query($project_id:ID!){ node(id:$project_id){ ... on ProjectV2 { fields(first:20) { nodes { ... on ProjectV2SingleSelectField { id name options { id name } } } } } } }' --jq '.data.node.fields.nodes[]|select(.name=="Agent")' -F project_id=${project_id}) | ||
agent_field_id=$(echo "$agent_field_json" | jq -r '.id' ) | ||
agent_field_value_id=$(echo "$agent_field_json" | jq -r ".options[]|select(.name==\"${AGENT}\")|.id" ) | ||
gh project item-edit --id "${item_id}" --project-id "${project_id}" --field-id "${agent_field_id}" --single-select-option-id "${agent_field_value_id}" | ||
|
||
iteration_field_json=$(gh api graphql -f query='query($project_id:ID!){ node(id:$project_id) { ... on ProjectV2 { fields(first: 20) { nodes { ... on ProjectV2IterationField { id name configuration { iterations { startDate id } } } } } } } }' --jq '.data.node.fields.nodes[] | select( .name == "Iteration" )' -F project_id=${project_id}) | ||
iteration_field_id=$(echo "$iteration_field_json" | jq -r '.id' ) | ||
iteration_field_value_id=$(echo "$iteration_field_json" | jq -r 'last(.configuration.iterations[]|select(.startDate<=(now|strftime("%Y-%m-%d"))))|.id') | ||
gh project item-edit --id "${item_id}" --project-id "${project_id}" --field-id "${iteration_field_id}" --iteration-id "${iteration_field_value_id}" |
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.
@v1v for now setting the field values does not work with the "project-field-set" action, however here this part is working as expected, removing the if
condition allows to make it run with the expected result. I'm giving up on this for today, let's continue on this next week when you have time.
agent-java
labelIn Progress
status and in current iteration with something reusable across projects.