-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Arthur Schiwon <[email protected]>
- Loading branch information
1 parent
67ca50c
commit 64a3257
Showing
2 changed files
with
121 additions
and
0 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,58 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
# | ||
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
name: Auto approve nextcloud/ocp | ||
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
- master | ||
- stable* | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: update-nextcloud-ocp-approve-merge-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
auto-approve-merge: | ||
if: github.actor == 'nextcloud-command' | ||
runs-on: ubuntu-latest-low | ||
permissions: | ||
# for hmarr/auto-approve-action to approve PRs | ||
pull-requests: write | ||
# for alexwilson/enable-github-automerge-action to approve PRs | ||
contents: write | ||
|
||
steps: | ||
- name: Disabled on forks | ||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} | ||
run: | | ||
echo 'Can not approve PRs from forks' | ||
exit 1 | ||
- uses: mdecoleman/pr-branch-name@55795d86b4566d300d237883103f052125cc7508 # v3.0.0 | ||
id: branchname | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# GitHub actions bot approve | ||
- uses: hmarr/auto-approve-action@b40d6c9ed2fa10c9a2749eca7eb004418a705501 # v2 | ||
if: startsWith(steps.branchname.outputs.branch, 'automated/noid/') && endsWith(steps.branchname.outputs.branch, 'update-nextcloud-ocp') | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Enable GitHub auto merge | ||
- name: Auto merge | ||
uses: alexwilson/enable-github-automerge-action@56e3117d1ae1540309dc8f7a9f2825bc3c5f06ff # main | ||
if: startsWith(steps.branchname.outputs.branch, 'automated/noid/') && endsWith(steps.branchname.outputs.branch, 'update-nextcloud-ocp') | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
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,63 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
/** | ||
* @copyright Copyright (c) 2024 Arthur Schiwon <[email protected]> | ||
* | ||
* @author Arthur Schiwon <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace OCA\FlowNotifications\Listener; | ||
|
||
use OCA\FlowNotifications\AppInfo\Application; | ||
use OCA\FlowNotifications\Flow\Operation; | ||
use OCP\App\IAppManager; | ||
use OCP\EventDispatcher\Event; | ||
use OCP\EventDispatcher\IEventListener; | ||
use OCP\Util; | ||
use OCP\WorkflowEngine\Events\RegisterOperationsEvent; | ||
use Psr\Log\LoggerInterface; | ||
|
||
/** | ||
* @template-implements IEventListener<Event|RegisterOperationsEvent> | ||
*/ | ||
class RegisterOperationsListener implements IEventListener { | ||
public function __construct( | ||
<<<<<<< HEAD | ||
protected readonly Operation $operation | ||
======= | ||
protected readonly Operation $operation, | ||
protected IAppManager $appManager, | ||
private readonly LoggerInterface $logger, | ||
>>>>>>> cc540d3 (fix(flow_notifications): Improve app loading by checking if notifications app is not installed and enabled when registering the app) | ||
) { | ||
} | ||
|
||
public function handle(Event $event): void { | ||
if (!$event instanceof RegisterOperationsEvent) { | ||
return; | ||
} elseif (!$this->appManager->isEnabledForUser('notifications')) { | ||
$this->logger->error('Failed to register `flow_notifications` app. This could happen due to the `notifications` app isn\'t installed or enabled.', ['app' => 'flow_notifications']); | ||
return; | ||
} | ||
|
||
$event->registerOperation($this->operation); | ||
Util::addScript(Application::APP_ID, 'flow_notifications-main'); | ||
} | ||
} |