├── .git-blame-ignore-revs ├── .github ├── contributing.md ├── dependabot.yml ├── issue_template.md ├── issue_template.md.license └── workflows │ ├── appstore-build-publish.yml │ ├── fixup.yml │ ├── lint-eslint-when-unrelated.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── pr-feedback.yml │ ├── psalm.yml │ ├── reuse.yml │ ├── update-nextcloud-ocp-approve-merge.yml │ └── update-nextcloud-ocp.yml ├── .gitignore ├── .nextcloudignore ├── .php-cs-fixer.dist.php ├── .tx └── config ├── AUTHORS.md ├── COPYING ├── LICENSES ├── AGPL-3.0-or-later.txt ├── CC0-1.0.txt └── MIT.txt ├── README.md ├── REUSE.toml ├── appinfo └── info.xml ├── composer.json ├── composer.lock ├── composer └── autoload.php ├── img ├── app-dark.svg └── app.svg ├── js └── admin.js ├── krankerl.toml ├── l10n └── .gitkeep ├── lib ├── AppInfo │ └── Application.php ├── BackgroundJobs │ └── Launcher.php ├── Exception │ └── PlaceholderNotSubstituted.php ├── Listener │ └── RegisterFlowOperationsListener.php └── Operation.php ├── psalm.xml ├── screenshots ├── flow-ui.png └── flow-ui.png.license └── tests └── psalm-baseline.xml /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/issue_template.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/issue_template.md.license -------------------------------------------------------------------------------- /.github/workflows/appstore-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/appstore-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/fixup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/fixup.yml -------------------------------------------------------------------------------- /.github/workflows/lint-eslint-when-unrelated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/lint-eslint-when-unrelated.yml -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/lint-info-xml.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/psalm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/psalm.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.github/workflows/update-nextcloud-ocp-approve-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/update-nextcloud-ocp-approve-merge.yml -------------------------------------------------------------------------------- /.github/workflows/update-nextcloud-ocp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.github/workflows/update-nextcloud-ocp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.gitignore -------------------------------------------------------------------------------- /.nextcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.nextcloudignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/REUSE.toml -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/workflow_script/HEAD/composer.lock -------------------------------------------------------------------------------- /composer/autoload.php: -------------------------------------------------------------------------------- 1 |