Category "github-actions"

How to update/cherry-pick other branches on push on specified branch?

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

How to run GitHub Actions workflow only if the pushed files are in a specific folder

I have a folder structure that looks something like this. - folder1 - file1 - *other files* - folder2 - file1 - *other files* - .gitignore - package.jso

GitHub Actions: How to view inputs for workflow_dispatch?

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

GitHub Actions: How to view inputs for workflow_dispatch?

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

GitHub Action Get Commit Message

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

How to deploy an AWS Amplify app from GitHub Actions?

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

Running a GitHub Actions step only if specific steps failed

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

Github Self-Hosted runner registration auth fails in GCE

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

Running a GUI application on a CI service without X11

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

Error "Waiting for a runner to pick up this job" using GitHub Actions

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

GitHub Actions expression functions: string manipulation?

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

Check if the artifacts are generated and exist in GitHub CI

- name: Build Debug APK run: ./gradlew assembleDebug - name: Get Debug APK uses: actions/upload-artifact@v1 with:

OpenIDConnect provider's HTTPS certificate doesn't match configured thumbprint

- name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@master with: role-to-assume: ${{secrets.ARN_GITHUB_ACTI

Couldn't connect to GitHub while authenicating to github on heroku

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

Github workflow set label to pull request when issue has labels

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

How to run a Github Action's step based on output condition?

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

How to deploy minimal ASP.NET/Razor WebApp with Github Workflow using VS 2022 CI/CD feature to generate YAML?

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 .

GitHub Actions - parallel self-hosted runners on the same machine

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

Use environment variable in github action if

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

How can I access GitHub Action environment variables within a Bash script run by the Action?

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