Alfresco customize workflow I would like someone to be able to see the workflow - workflow

I Would like 'Group_Marketing' can start workflow.
Workflow is customize. Can i do this
Please help me
Thank you

Related

Azure DevOps: prompt users to enter a value for a parameter used during deployment

I would like to create a Release Pipeline that, after a few tasks, stops and prompts a user to enter a value, then continues.
In the docs I found the exact scenario I was looking for, see the following link
Unfortunately, if I read the suggested links Manual Intervention and Manual Validation, it is not really explained how to reproduce the scenario.
I don't even know where to start, do you have any advice?
Thank you very much for your help.

Is there a way to customize Github checks with CircleCI?

I am currently working on the CI of project and I deploy a preview for each github branch that pass all integration tests.
My CI workflow is executed by CircleCI and I can see the progression on github with Github checks. It works pretty nice but description does not reflect what really happens.
For instance I can see this on github :
My problem is I would like to custom message and details actions link. My last job deploys a preview and I would like to be able to put the link somewhere. The best case should be able to open my preview when I click on details button.
Is there any way to do this ?
I send a mail to CircleCI support and I got this anwser :
Hello,
It is not possible at this time to customize this text. Clicking the
details link will bring you to the job on CircleCI. We are currently
working on a utility that will allow you to post comments to the PR
from within a job that may be close to what you are looking for. This
will exist in an Orb (https://circleci.com/orbs/registry/) but I could
not say exactly how long until this is released, though we are
actively working on it.
You may wish to post to our public facing ideas portal:
https://ideas.circleci.com/ideas as a new idea post. This will let our
community vote for this request. Please let us know if we can assist
any further.
So, unfortunately it is not possible yet. Maybe in the future.

Run a GitHub Action only when someone opens a PR

Is there a way to run Github-Actions only when PR Opens.
I know there is a possibility to run workflow with on = "pull_request". However it means the workflow will be triggered when someone opens PR, comments it, review and close. I would like to run it only once, when someone opens PR. I tried ENV_VAR but no luck. Perhaps events might be the way to go? https://developer.github.com/webhooks/#events
Run a workflow when a Pull Request is Opened:
on:
pull_request:
types: [opened]
I think this should work.
https://github.com/actions/bin/tree/master/filter#actor can be useful to filter before your action.

How to apply the same settings to different Github repositories?

I'm trying to apply settings like:
Allow only squash merge for pull requests
Disable wiki
Disable issues
...
and other options you can configure on the settings menu.
I want to change it for a group of hundreds repositories in the same organisation.
I don't want to use the UI for that. In the best scenario I would like to capture this configuration in code.
I started to play with the API for that. However, I would like to know if anyone here have faced the problem and have any tips about it?
Thank you.

Using Someone Else's Github Code

I've been learning about forking, but haven't seen precisely my question answered. I'd like to use someone else's code in my own project. I do not want to submit a pull or change anything in the main branch, but instead start my own using someone else's code as a starting point. What is the best way to go about doing this?