Skip to content
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

Implement some action notifier functions #29173

Merged
merged 9 commits into from
Feb 18, 2024

Conversation

yp05327
Copy link
Contributor

@yp05327 yp05327 commented Feb 15, 2024

Fix #29166

Add support for the following activity types of pull_request

  • assigned
  • unassigned
  • review_requested
  • review_request_removed
  • milestoned
  • demilestoned

@GiteaBot GiteaBot added the lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. label Feb 15, 2024
@pull-request-size pull-request-size bot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Feb 15, 2024
@pull-request-size pull-request-size bot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. and removed size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Feb 15, 2024
@yp05327
Copy link
Contributor Author

yp05327 commented Feb 15, 2024

UI should also be fix as we only have scheduled and commit here. But that can be another PR, as this fix will be a little big change.
image
image

@yp05327 yp05327 marked this pull request as ready for review February 15, 2024 08:24
@yp05327 yp05327 changed the title [WIP] Implement some action notifier functions Implement some action notifier functions Feb 15, 2024
services/actions/notifier.go Outdated Show resolved Hide resolved
return
}

permission, _ := access_model.GetUserRepoPermission(ctx, issue.Repo, issue.Poster)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could move this below if issue.IsPull because it's only needed for issues. (Why is that the case? Why has the pull request AccessModeNone but the issue has the real permissions?)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why has the pull request AccessModeNone but the issue has the real permissions?

I have no idea about this now. I think we can ask @wolfogre, as it comes from the origin implement.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whether all the concerns are resolved? @KN4CK3R @yp05327

Copy link
Member

@wolfogre wolfogre Feb 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The permission is used to fill the payload to allow scripts in actions to check if they can push or pull the repo. It inherits the design of webhook payloads, I don't think the actions scripts really read it, so it should be OK to use the same permission for both issues and PRs. It doesn't affect the actual permissions of actions scripts.

@silverwind
Copy link
Member

UI should also be fix as we only have scheduled and commit here. But that can be another PR, as this fix will be a little big change. image image

What's the problem? The spacing around :?

@yp05327
Copy link
Contributor Author

yp05327 commented Feb 16, 2024

UI should also be fix as we only have scheduled and commit here. But that can be another PR, as this fix will be a little big change. image image

What's the problem? The spacing around :?

If runs are triggered by some special hooks, like assigned or unassigned, it will always be Commit xxxxxx, which can be PR#xxxx Assigned/Unassigned. Or you will see some thing like this, users cannot know which operation triggered these runs. They look all the same, but actually from different hooks.
image

@pull-request-size pull-request-size bot added size/M Denotes a PR that changes 30-99 lines, ignoring generated files. and removed size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Feb 16, 2024
@lunny lunny added the topic/gitea-actions related to the actions of Gitea label Feb 17, 2024
@GiteaBot GiteaBot added lgtm/need 1 This PR needs approval from one additional maintainer to be merged. and removed lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. labels Feb 18, 2024
@GiteaBot GiteaBot added lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. and removed lgtm/need 1 This PR needs approval from one additional maintainer to be merged. labels Feb 18, 2024
@lunny lunny added reviewed/wait-merge This pull request is part of the merge queue. It will be merged soon. backport/v1.21 This PR should be backported to Gitea 1.21 labels Feb 18, 2024
@lunny lunny added this to the 1.22.0 milestone Feb 18, 2024
@lunny lunny enabled auto-merge (squash) February 18, 2024 06:00
@lunny lunny disabled auto-merge February 18, 2024 06:01
@lunny lunny enabled auto-merge (squash) February 18, 2024 10:09
@lunny lunny merged commit 1a6e1cb into go-gitea:main Feb 18, 2024
26 checks passed
@GiteaBot
Copy link
Contributor

I was unable to create a backport for 1.21. @yp05327, please send one manually. 🍵

go run ./contrib/backport 29173
...  // fix git conflicts if any
go run ./contrib/backport --continue

@GiteaBot GiteaBot added backport/manual No power to the bots! Create your backport yourself! and removed reviewed/wait-merge This pull request is part of the merge queue. It will be merged soon. labels Feb 18, 2024
zjjhot added a commit to zjjhot/gitea that referenced this pull request Feb 18, 2024
* giteaofficial/main: (28 commits)
  Improve TrHTML and add more tests (go-gitea#29228)
  Convert visibility to number (go-gitea#29226)
  Implement some action notifier functions (go-gitea#29173)
  Artifact deletion in actions ui (go-gitea#27172)
  Update docs for actions variables (go-gitea#29239)
  Refactor more code in templates  (go-gitea#29236)
  Use "Safe" modifier for manually constructed safe HTML strings in templates (go-gitea#29227)
  Remove jQuery from the repo release form (go-gitea#29225)
  Make submit event code work with both jQuery event and native event (go-gitea#29223)
  Remove jQuery from repo migrate page (go-gitea#29219)
  Remove unneccesary `initUserAuthLinkAccountView` from "link account" page (go-gitea#29217)
  Fix labels referencing the wrong ID in the user profile settings (go-gitea#29199)
  Fix label `for` pointing to a `name` instead of `id` in webhook settings (go-gitea#29209)
  Load outdated comments when (un)resolving conversation on PR timeline (go-gitea#29203)
  Fix missing template for follow button in organization (go-gitea#29215)
  Enable markdownlint `no-trailing-punctuation` and `no-blanks-blockquote` (go-gitea#29214)
  Remove jQuery from the webhook editor (go-gitea#29211)
  Remove jQuery from issue reference context popup attach (go-gitea#29216)
  fix typo (go-gitea#29212)
  Fix debian InRelease Acquire-By-Hash newline (go-gitea#29204)
  ...
yp05327 added a commit to yp05327/gitea that referenced this pull request Feb 19, 2024
Backport go-gitea#29173

Fix go-gitea#29166

Add support for the following activity types of `pull_request`
- assigned
- unassigned
- review_requested
- review_request_removed
- milestoned
- demilestoned
@yp05327
Copy link
Contributor Author

yp05327 commented Feb 19, 2024

emmm, it seems that it is same to 29190

https://github.com/yp05327/gitea/tree/backport-29173-v1.21

silverwind pushed a commit to silverwind/gitea that referenced this pull request Feb 20, 2024
Fix go-gitea#29166

Add support for the following activity types of `pull_request`
- assigned
- unassigned
- review_requested
- review_request_removed
- milestoned
- demilestoned
silverwind pushed a commit that referenced this pull request Feb 22, 2024
Backport #29173

Fix #29166

Add support for the following activity types of `pull_request`
- assigned
- unassigned
- review_requested
- review_request_removed
- milestoned
- demilestoned
@lunny lunny added the backport/done All backports for this PR have been created label Feb 22, 2024
6543 pushed a commit to 6543-forks/gitea that referenced this pull request Feb 26, 2024
Fix go-gitea#29166

Add support for the following activity types of `pull_request`
- assigned
- unassigned
- review_requested
- review_request_removed
- milestoned
- demilestoned

(cherry picked from commit 1a6e1cb)
Copy link

github-actions bot commented Mar 1, 2024

Automatically locked because of our CONTRIBUTING guidelines

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 1, 2024
@yp05327 yp05327 deleted the implement-action-notifier-funcs branch March 19, 2024 08:48
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
backport/done All backports for this PR have been created backport/manual No power to the bots! Create your backport yourself! backport/v1.21 This PR should be backported to Gitea 1.21 lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. size/M Denotes a PR that changes 30-99 lines, ignoring generated files. topic/gitea-actions related to the actions of Gitea
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Actions] Workflows not triggered for PR assign and review
6 participants