I would like to create GitHub action that is triggered by push on specified branch X. This action will push/cherry-pick changes made on branch X to other branch
I have a folder structure that looks something like this. - folder1 - file1 - *other files* - folder2 - file1 - *other files* - .gitignore - package.jso
My idea here is to write my inputs from workflow_dispatch on each pipeline run. . For example, in Bitbucket pipelines input parameters shown after custom - Is
My idea here is to write my inputs from workflow_dispatch on each pipeline run. . For example, in Bitbucket pipelines input parameters shown after custom - Is
So I am building an action that does a build for a project that will go to Netlify. In the action I can pass a deploy message. In that deploy message, I want to
I want to control Amplify deployments from GitHub Actions because Amplify auto-build doesn't provide a GitHub Environment doesn't watch the CI for failures and
I’d like to run a step only if specific previous steps FAILED with Exit Code different from Zero. I’ve tried the code below but it not working. How
I am setting up self hosted runner on the Google compute engine by following the steps as advised by GitHub for Enterprise as follows. //Create a folder $ mkdir
I have a GUI application that I would like to set up testing for via GitHub Actions. I already have it set up so that GitHub Actions compiles the application on
When I use GitHub Actions with my config, there is a long waiting and it shows "Waiting for a runner to pick up this job". What does 'runner' mean? And how can
In a GitHub Actions workflow definition file, there's a set of built-in functions that you can use in expressions. For example: ${{ toJson(github) }} Are there
- name: Build Debug APK run: ./gradlew assembleDebug - name: Get Debug APK uses: actions/upload-artifact@v1 with:
- name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@master with: role-to-assume: ${{secrets.ARN_GITHUB_ACTI
I had created a app on heroku on authenticating to github it say Error: remote was closed, authorization was denied, or an authentication message otherwise not
Just doing research and didnt find what I am searching for atm. Thinking of this situation: There is a issue with 'bug' label Creating branch on github in that
I would like to comment on a PR if there are more than 100 flake8 errors but it's not going to disable the merge button. My approach is something like this: nam
Background: I'm trying to use that Visual Studio (2022) CI/CD feature (part of the publish feature) that automatically generates the workflow YAML file in the .
Question related to the topic of Parallelism in Self-Hosted Runners: One self-hosted runner can only run one job at a time, when no available runners are id
I'm trying to use an environment variable in an if condition in github actions like so: name: Worfklow on: push jobs: build: runs-on: ubuntu-latest
I'm not able to access environment variables defined at the top-level of a GitHub Action configuration file from within a script run by the action. For example