Questions tagged [github-check-run]

16 questions
6
votes
0 answers

Using GitHub Checks Annotations from Azure Pipelines

Summary I want to add annotations to GitHub CI runs from inside Azure Pipelines. I want to add these annotations to the CI Check Run that is performing the build. I do not know how to get at the GitHub Check Run identifier from inside Azure, and I…
5
votes
1 answer

Block merge if github actions are failed

I have setup Github action for python app, it's located at .github/workflows/python-app.yml with details as on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: ... This executes fine however, We want to…
Vikrant Pawar
  • 789
  • 1
  • 6
  • 23
4
votes
2 answers

Deleting stale checks on github

I have ended up with some stale checks, mostly as outcome of renaming/refactoring workflows, and I'd like to remove the stale ones, but github doesn't seem to expose any button/api. How can I do that? Stale checks also prevent developers from…
Hitmands
  • 13,491
  • 4
  • 34
  • 69
4
votes
0 answers

Why is a check suite not being created for a forked PR?

I created a new GitHub App to perform check runs. I want it to be triggered on every PR. It is working great when I get a PR from a different branch in my repository. But, when someone forks my repo and makes a PR, my application's webhook never…
Adam
  • 43,763
  • 16
  • 104
  • 144
3
votes
2 answers

Disable Github Actions check runs from annotating files

Looking for a way to disable Github Actions check runs from annotating files. /* Context - Working on an eslint workflow action to comment on PR's, as it's annoying with this check runs annotating all files by default */ Ref PR-…
Dilipan
  • 73
  • 1
  • 7
2
votes
2 answers

Add check to a specific workflow-run/check-suite using octokit

I have a project with Github Actions that implements multiple workflows that can be triggered by a single push event (depending on path filter). So a push with a single commit can trigger multiple workflows, so far so good. In each workflow I am…
Andreas Linden
  • 12,489
  • 7
  • 51
  • 67
2
votes
1 answer

How to get the GitHub CI job build id (check_run_id)?

I am using build.cake file tasks with PowerShell script on the windows machine for GitHub CI. Am trying to get the check_run_id via GitHub Actions in the workflows .yml file. Is that possible? i.e.…
Elango R
  • 137
  • 8
1
vote
1 answer

How to block PR from beeing merged if external test result fails

Every time a new PullRequest is created to merge branchA to branchB, I need to run some tests is a external tool. It might take hours to run it. When the PR is created, a workflow dispatches a github action that creates a EXTERNAL JOB in the…
guilhermecgs
  • 2,913
  • 11
  • 39
  • 69
1
vote
1 answer

Are projects using GitHub checks having continuous integration?

I am doing data analysis on GitHub projects and I want to filter projects having continuous integration (on GitHub). There are two types of checks and statuses on GitHub: Checks and Statuses! Projects can use GitHub Apps to run checks or mark their…
1
vote
1 answer

Probot check-js pull request

I'm building a code-review app for github using nodeJS (ProBot) I'm trying to get the pull_request data out of the check_suite that was created in order to get the relevant files and run my tests but the context.payload.pull_request is empty. i…
H.Epstein
  • 721
  • 1
  • 7
  • 26
1
vote
1 answer

What happened to the rerun button in GitHub checks?

I can't share any screenshots for proprietary reasons, but has the re-run button for GitHub checks been removed? It used to be that you could click "Checks" on a pull request, and there would be a button that you could press to trigger a webhook…
1
vote
0 answers

How to show additional information on github checks from Google Cloud build github App

I configured github checks with the Google Cloud Build Github App and now I would like to know if I can show any additional custom data on the github check or in the github check detail page. Currently, there isn't much useful information when a…
0
votes
1 answer

Github checks api is ignoring style attributes when html is passed as comment text

I am using github's create check run api to create a check run for my PR. I am passing the request body in the following structure: { "name" : name, "head_sha" : script.env.CI_COMMIT_SHA, "status" : status, "details_url":…
Piyush Das
  • 610
  • 1
  • 7
  • 18
0
votes
0 answers

Github check runs visits

I have created a GitHub application, which, on push, creates a new check run and writes some data on it. In order to improve my application, is it possible to count the number of times the user visited the check run page and saw the results? E.g. I…
Nick
  • 1
  • 1
0
votes
0 answers

github actions - check run, can i trigger a job with multiple conditions?

Can I use check_run trigger in Github Actions the following way? on: check_run: types: [completed] conclusion: [success] name: [mytest] Is there anyone who can give me a correct example to follow?
user3770635
  • 123
  • 6
1
2