github-actions Questions
2
I've been working on maintenance on this GitHub repo that has been left undeveloped for almost a year. When rerunning the GitHub Actions job that finished to completion last May, there are now issu...
Carpophagous asked 15/2, 2023 at 17:39
2
I have written a github actions workflow yml file to schedule a job to run everyday at a particular time but it's not working. I have even used the cron written in official doc but still it is not ...
Editorial asked 19/12, 2022 at 12:30
2
I have a github action that is triggered when a release is created.
The goal is to:
Find the tag on which the release was based
Find the previous tag on that branch
So far, I have this:
CURRENT_T...
Merthiolate asked 6/8, 2020 at 12:53
3
I have a self-hosted Azure DevOps Pipeline build agent and would like to download and install Python from the Github repository if it is not already available in the agent tools directory.
The offi...
Azotic asked 13/12, 2022 at 10:28
3
Solved
I am running Pylint on the GitHub actions.
Before it runs, it installs the module playsound during the dependencies installation.
The checks all failed with Python 3.8, 3.9, and 3.10.
It seems to f...
Restore asked 30/4, 2023 at 15:28
2
I am getting following error :
create_nuget
The file '/home/runner/work/MyNugetPackage/MyNugetPackage/MyNugetPackage/bin/Release/net6.0/MyNugetPackage.dll' to be packed was not found on disk.
This...
Endomorph asked 13/11, 2023 at 6:51
1
We have a few branch policies to protect one of the branches in the github repo. One policy is that the deployment to the specified environment must be successful. But even after the deployment is ...
Embryectomy asked 12/7, 2023 at 15:36
5
Solved
So, I'm working with Github Actions on end-to-end testing. The setup I'm looking at is having one job retrieve a list of urls to be tested, and my second job creates a matrix with that list and tes...
Redon asked 12/7, 2022 at 13:54
4
I find it unproductive to edit yml file, then push a new commit again, and repeat the process hundreds of times until you make it right. I began thinking about how to automate this tedious process....
Struve asked 11/3, 2023 at 13:40
3
Solved
So I have a github workflow that calls a composite action at the end, regardless of success or failure. I want to pass whether or not the workflow has succeeded to the action to use within it. I ha...
Kries asked 11/4, 2023 at 14:55
3
Using act to locally test github-actions via Docker, I am getting a variety of TS errors (TS2345, TS18046, TS2339, etc...) during my github-action workflow. These errors are not observed during loc...
Consubstantiate asked 28/1, 2023 at 17:10
1
When using branch protection on a repository, you can specify Require status checks to pass before merging. You can search for a job that is used by one of your workflows within the repository by t...
Schnozzle asked 28/8, 2023 at 14:40
3
I have a team called "team-core" in GitHub.
This team has Write access to a certain private repository:
I have an environment "qa" set up for this repository in GitHub.
I want ...
Baudin asked 6/9, 2022 at 23:0
2
I am trying to run my github runner as root for self hosted linux servers. Can anyone point me to easy solution that I can implement quickly in following code:
name: Test
on: push
jobs:
Test1:
ru...
Roane asked 13/7, 2021 at 1:47
2
I did a misconfiguration with concurrency, initially in the root of my GitHub Actions workflow, and moved to a sub workflow (workflow_call).
Since, I have a workflow that is stuck with label:
I tr...
Gervais asked 11/1, 2024 at 10:49
2
Official github actions documentation says I can set the defaults to specfify defaults settings for all jobs (https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#default...
Carr asked 15/5, 2020 at 10:49
1
Solved
Context
On https://docs.github.com/en/actions/learn-github-actions/environment-variables
they describe a way to add an environment variable with yaml:
jobs:
job_name:
env:
NAME: value
On https:...
Deutsch asked 27/11, 2021 at 17:42
3
Solved
I am a maintainer of a few Julia GitHub repositories which use GitHub Actions for nightly CI runs, via cron. Some of these packages do not get maintenance for months but are used within the ecosyst...
Hoot asked 20/4, 2021 at 18:23
2
In the below syntax:
jobs:
testing:
name: some test
runs-on: [ self-hosted, linux, xyz ]
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15.0
id: go
- name: Config...
Firsthand asked 11/2, 2021 at 7:19
1
I had tried using paths-ignore that I read about from https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scannin...
Arch asked 11/10, 2022 at 15:50
7
Solved
I have a problem, when I want to get the job id using the GitHub context in yaml file, it responds with a String:
- name: Test
run: |
sendEmail ${{github.job]}
I obtain this response:
sendEmail...
Alidia asked 23/2, 2022 at 16:5
2
Solved
In GitHub Workflow I'm looking for a build-in variable which would contain the name of the current GH deployment environment (e.g. "staging") or be blank/unset if no such thing exist.
Sin...
Idiomorphic asked 10/5, 2023 at 12:59
2
Besides success and failed, is there any warning state for Github Actions? How to set one for an action that is not owned by me? E.g. Github Actions return code 1 (error), in this case I only want ...
Snowdrop asked 24/12, 2022 at 12:43
3
You can set env vars available across the entire workflow e.g. like in this post.
(From solution on linked post)
name: Git Pull Request Workflow
on:
workflow_dispatch:
pull_request:
branches:
...
Gerianne asked 28/10, 2021 at 18:59
3
Solved
I created a fresh new Blazor WASM project targeting .NET 8 and want to deploy it to Azure Static Web App service using GitHub actions but I keep getting an error that tells me that .NET version 8 i...
Institutionalize asked 29/8, 2023 at 18:19
1 Next >
© 2022 - 2025 — McMap. All rights reserved.