Skip to content

Workflow triggered on workflow_run event (triggered from issue_comment event) lack issue number #3438

Description

@qkdreyer

Describe the bug
Workflow triggered on workflow_run event (triggered from issue_comment event) lack issue number

To Reproduce
Steps to reproduce the behavior:

  • Create a repository on an organization and fork it
  1. Create a .github/workflows/comment.yml
name: Comment
on:
  issue_comment:
    types: [created]
jobs:
  comment:
    runs-on: ubuntu-latest
    steps:
      - name: Dump GitHub context
        env:
          GITHUB_CONTEXT: ${{ toJson(github) }}
        run: echo "$GITHUB_CONTEXT"
  1. Create a .github/workflows/workflow-run.yml
name: Workflow Run
on:
  workflow_run:
    workflows:
      - Comment
    types:
      - completed
jobs:
  dump:
    if: ${{ github.event.workflow_run.event == 'issue_comment' }}
    runs-on: ubuntu-latest
    steps:
      - name: Dump GitHub context
        env:
          GITHUB_CONTEXT: ${{ toJson(github) }}
        run: echo "$GITHUB_CONTEXT"
  1. Create an issue and add a issue-comment
  2. Create a pull request and add a pr-comment
  3. Look at the dump job for the first workflow run named Workflow Run (triggered from issue_comment event from an issue) and find out that github.event.workflow_run.pull_requests is empty ❌
  4. Look at the dump job for the second workflow run named Workflow Run (triggered from issue_comment event from a pull request) and find out that github.event.workflow_run.pull_requests is empty ❌

Expected behavior
Payload from workflow_run workflow triggered from issue_comment event should include issue number

Runner Version and Platform

Version of your runner?
2.319.1

OS of the machine running the runner? OSX/Windows/Linux/...
Linux

What's not working?

Please include error messages and screenshots.

Details
2024-08-23T14:05:20.4871547Z Current runner version: '2.319.1'
2024-08-23T14:05:20.4894737Z ##[group]Operating System
2024-08-23T14:05:20.4895511Z Ubuntu
2024-08-23T14:05:20.4895853Z 22.04.4
2024-08-23T14:05:20.4896189Z LTS
2024-08-23T14:05:20.4896568Z ##[endgroup]
2024-08-23T14:05:20.4896944Z ##[group]Runner Image
2024-08-23T14:05:20.4898114Z Image: ubuntu-22.04
2024-08-23T14:05:20.4898640Z Version: 20240818.1.0
2024-08-23T14:05:20.4899645Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240818.1/images/ubuntu/Ubuntu2204-Readme.md
2024-08-23T14:05:20.4901081Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240818.1
2024-08-23T14:05:20.4902009Z ##[endgroup]
2024-08-23T14:05:20.4902372Z ##[group]Runner Image Provisioner
2024-08-23T14:05:20.4902861Z 2.0.382.1
2024-08-23T14:05:20.4903249Z ##[endgroup]
2024-08-23T14:05:20.4917826Z ##[group]GITHUB_TOKEN Permissions
2024-08-23T14:05:20.4919593Z Contents: read
2024-08-23T14:05:20.4920001Z Metadata: read
2024-08-23T14:05:20.4920686Z Packages: read
2024-08-23T14:05:20.4921129Z ##[endgroup]
2024-08-23T14:05:20.4924387Z Secret source: Actions
2024-08-23T14:05:20.4924926Z Prepare workflow directory
2024-08-23T14:05:20.5539321Z Prepare all required actions
2024-08-23T14:05:20.5769254Z Complete job name: dump
2024-08-23T14:05:20.6902942Z ##[group]Run echo "$GITHUB_CONTEXT"
2024-08-23T14:05:20.6903600Z �[36;1mecho "$GITHUB_CONTEXT"�[0m
2024-08-23T14:05:20.7564136Z shell: /usr/bin/bash -e {0}
2024-08-23T14:05:20.7564711Z env:
2024-08-23T14:05:20.7699692Z   GITHUB_CONTEXT: {
  "token": "***",
  "job": "dump",
  "ref": "refs/heads/main",
  "sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
  "repository": "qkdreyer/workflows",
  "repository_owner": "qkdreyer",
  "repository_owner_id": "717869",
  "repositoryUrl": "git://github.com/qkdreyer/workflows.git",
  "run_id": "10527120006",
  "run_number": "1",
  "retention_days": "90",
  "run_attempt": "1",
  "artifact_cache_size_limit": "10",
  "repository_visibility": "public",
  "repo-self-hosted-runners-disabled": false,
  "enterprise-managed-business-id": "",
  "repository_id": "846579865",
  "actor_id": "717869",
  "actor": "qkdreyer",
  "triggering_actor": "qkdreyer",
  "workflow": "Workflow Run",
  "head_ref": "",
  "base_ref": "",
  "event_name": "workflow_run",
  "event": {
    "action": "completed",
    "repository": {
      "allow_forking": true,
      "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
      "archived": false,
      "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
      "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
      "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
      "clone_url": "https://github.com/qkdreyer/workflows.git",
      "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
      "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
      "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
      "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
      "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
      "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
      "created_at": "2024-08-23T14:03:17Z",
      "default_branch": "main",
      "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
      "description": null,
      "disabled": false,
      "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
      "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
      "fork": false,
      "forks": 0,
      "forks_count": 0,
      "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
      "full_name": "qkdreyer/workflows",
      "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
      "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
      "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
      "git_url": "git://github.com/qkdreyer/workflows.git",
      "has_discussions": false,
      "has_downloads": true,
      "has_issues": true,
      "has_pages": false,
      "has_projects": true,
      "has_wiki": true,
      "homepage": null,
      "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
      "html_url": "https://github.com/qkdreyer/workflows",
      "id": 846579865,
      "is_template": false,
      "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
      "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
      "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
      "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
      "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
      "language": null,
      "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
      "license": null,
      "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
      "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
      "mirror_url": null,
      "name": "workflows",
      "node_id": "R_kgDOMnXImQ",
      "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
      "open_issues": 1,
      "open_issues_count": 1,
      "owner": {
        "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
        "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
        "followers_url": "https://api.github.com/users/qkdreyer/followers",
        "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
        "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
        "gravatar_id": "",
        "html_url": "https://github.com/qkdreyer",
        "id": 717869,
        "login": "qkdreyer",
        "node_id": "MDQ6VXNlcjcxNzg2OQ==",
        "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
        "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
        "repos_url": "https://api.github.com/users/qkdreyer/repos",
        "site_admin": false,
        "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
        "type": "User",
        "url": "https://api.github.com/users/qkdreyer"
      },
      "private": false,
      "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
      "pushed_at": "2024-08-23T14:04:17Z",
      "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
      "size": 0,
      "ssh_url": "git@github.com:qkdreyer/workflows.git",
      "stargazers_count": 0,
      "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
      "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
      "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
      "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
      "svn_url": "https://github.com/qkdreyer/workflows",
      "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
      "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
      "topics": [],
      "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
      "updated_at": "2024-08-23T14:04:20Z",
      "url": "https://api.github.com/repos/qkdreyer/workflows",
      "visibility": "public",
      "watchers": 0,
      "watchers_count": 0,
      "web_commit_signoff_required": false
    },
    "sender": {
      "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
      "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
      "followers_url": "https://api.github.com/users/qkdreyer/followers",
      "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
      "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
      "gravatar_id": "",
      "html_url": "https://github.com/qkdreyer",
      "id": 717869,
      "login": "qkdreyer",
      "node_id": "MDQ6VXNlcjcxNzg2OQ==",
      "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
      "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
      "repos_url": "https://api.github.com/users/qkdreyer/repos",
      "site_admin": false,
      "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
      "type": "User",
      "url": "https://api.github.com/users/qkdreyer"
    },
    "workflow": {
      "badge_url": "https://github.com/qkdreyer/workflows/workflows/Comment/badge.svg",
      "created_at": "2024-08-23T14:03:58.000Z",
      "html_url": "https://github.com/qkdreyer/workflows/blob/main/.github/workflows/comment.yml",
      "id": 113818769,
      "name": "Comment",
      "node_id": "W_kwDOMnXImc4GyLyR",
      "path": ".github/workflows/comment.yml",
      "state": "active",
      "updated_at": "2024-08-23T14:03:58.000Z",
      "url": "https://api.github.com/repos/qkdreyer/workflows/actions/workflows/113818769"
    },
    "workflow_run": {
      "actor": {
        "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
        "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
        "followers_url": "https://api.github.com/users/qkdreyer/followers",
        "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
        "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
        "gravatar_id": "",
        "html_url": "https://github.com/qkdreyer",
        "id": 717869,
        "login": "qkdreyer",
        "node_id": "MDQ6VXNlcjcxNzg2OQ==",
        "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
        "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
        "repos_url": "https://api.github.com/users/qkdreyer/repos",
        "site_admin": false,
        "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
        "type": "User",
        "url": "https://api.github.com/users/qkdreyer"
      },
      "artifacts_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/artifacts",
      "cancel_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/cancel",
      "check_suite_id": 27526422933,
      "check_suite_node_id": "CS_kwDOMnXImc8AAAAGaLPhlQ",
      "check_suite_url": "https://api.github.com/repos/qkdreyer/workflows/check-suites/27526422933",
      "conclusion": "success",
      "created_at": "2024-08-23T14:04:56Z",
      "display_title": "issue",
      "event": "issue_comment",
      "head_branch": "main",
      "head_commit": {
        "author": {
          "email": "quentin.dreyer@gmail.com",
          "name": "Quentin Dreyer"
        },
        "committer": {
          "email": "noreply@github.com",
          "name": "GitHub"
        },
        "id": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
        "message": "Create workflow-run.yml",
        "timestamp": "2024-08-23T14:04:17Z",
        "tree_id": "972d18cb0aa64e8f741fba8155a96e435eb47255"
      },
      "head_repository": {
        "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
        "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
        "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
        "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
        "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
        "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
        "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
        "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
        "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
        "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
        "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
        "description": null,
        "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
        "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
        "fork": false,
        "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
        "full_name": "qkdreyer/workflows",
        "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
        "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
        "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
        "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
        "html_url": "https://github.com/qkdreyer/workflows",
        "id": 846579865,
        "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
        "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
        "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
        "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
        "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
        "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
        "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
        "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
        "name": "workflows",
        "node_id": "R_kgDOMnXImQ",
        "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
        "owner": {
          "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
          "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
          "followers_url": "https://api.github.com/users/qkdreyer/followers",
          "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
          "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
          "gravatar_id": "",
          "html_url": "https://github.com/qkdreyer",
          "id": 717869,
          "login": "qkdreyer",
          "node_id": "MDQ6VXNlcjcxNzg2OQ==",
          "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
          "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
          "repos_url": "https://api.github.com/users/qkdreyer/repos",
          "site_admin": false,
          "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
          "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
          "type": "User",
          "url": "https://api.github.com/users/qkdreyer"
        },
        "private": false,
        "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
        "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
        "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
        "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
        "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
        "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
        "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
        "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
        "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
        "url": "https://api.github.com/repos/qkdreyer/workflows"
      },
      "head_sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
      "html_url": "https://github.com/qkdreyer/workflows/actions/runs/10527115931",
      "id": 10527115931,
      "jobs_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/jobs",
      "logs_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/logs",
      "name": "Comment",
      "node_id": "WFR_kwLOMnXImc8AAAACc3cKmw",
      "path": ".github/workflows/comment.yml",
      "previous_attempt_url": null,
      "pull_requests": [],
      "referenced_workflows": [],
      "repository": {
        "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
        "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
        "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
        "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
        "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
        "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
        "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
        "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
        "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
        "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
        "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
        "description": null,
        "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
        "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
        "fork": false,
        "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
        "full_name": "qkdreyer/workflows",
        "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
        "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
        "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
        "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
        "html_url": "https://github.com/qkdreyer/workflows",
        "id": 846579865,
        "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
        "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
        "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
        "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
        "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
        "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
        "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
        "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
        "name": "workflows",
        "node_id": "R_kgDOMnXImQ",
        "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
        "owner": {
          "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
          "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
          "followers_url": "https://api.github.com/users/qkdreyer/followers",
          "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
          "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
          "gravatar_id": "",
          "html_url": "https://github.com/qkdreyer",
          "id": 717869,
          "login": "qkdreyer",
          "node_id": "MDQ6VXNlcjcxNzg2OQ==",
          "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
          "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
          "repos_url": "https://api.github.com/users/qkdreyer/repos",
          "site_admin": false,
          "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
          "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
          "type": "User",
          "url": "https://api.github.com/users/qkdreyer"
        },
        "private": false,
        "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
        "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
        "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
        "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
        "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
        "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
        "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
        "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
        "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
        "url": "https://api.github.com/repos/qkdreyer/workflows"
      },
      "rerun_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/rerun",
      "run_attempt": 1,
      "run_number": 1,
      "run_started_at": "2024-08-23T14:04:56Z",
      "status": "completed",
      "triggering_actor": {
        "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
        "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
        "followers_url": "https://api.github.com/users/qkdreyer/followers",
        "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
        "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
        "gravatar_id": "",
        "html_url": "https://github.com/qkdreyer",
        "id": 717869,
        "login": "qkdreyer",
        "node_id": "MDQ6VXNlcjcxNzg2OQ==",
        "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
        "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
        "repos_url": "https://api.github.com/users/qkdreyer/repos",
        "site_admin": false,
        "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
        "type": "User",
        "url": "https://api.github.com/users/qkdreyer"
      },
      "updated_at": "2024-08-23T14:05:12Z",
      "url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931",
      "workflow_id": 113818769,
      "workflow_url": "https://api.github.com/repos/qkdreyer/workflows/actions/workflows/113818769"
    }
  },
  "server_url": "https://github.com",
  "api_url": "https://api.github.com",
  "graphql_url": "https://api.github.com/graphql",
  "ref_name": "main",
  "ref_protected": false,
  "ref_type": "branch",
  "secret_source": "Actions",
  "workflow_ref": "qkdreyer/workflows/.github/workflows/workflow-run.yml@refs/heads/main",
  "workflow_sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
  "workspace": "/home/runner/work/workflows/workflows",
  "action": "__run"
}
2024-08-23T14:05:20.7832130Z ##[endgroup]
2024-08-23T14:05:20.8260136Z {
2024-08-23T14:05:20.8261835Z   "token": "***",
2024-08-23T14:05:20.8262241Z   "job": "dump",
2024-08-23T14:05:20.8262649Z   "ref": "refs/heads/main",
2024-08-23T14:05:20.8263294Z   "sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
2024-08-23T14:05:20.8263901Z   "repository": "qkdreyer/workflows",
2024-08-23T14:05:20.8264483Z   "repository_owner": "qkdreyer",
2024-08-23T14:05:20.8265071Z   "repository_owner_id": "717869",
2024-08-23T14:05:20.8265949Z   "repositoryUrl": "git://github.com/qkdreyer/workflows.git",
2024-08-23T14:05:20.8266630Z   "run_id": "10527120006",
2024-08-23T14:05:20.8267127Z   "run_number": "1",
2024-08-23T14:05:20.8267501Z   "retention_days": "90",
2024-08-23T14:05:20.8267962Z   "run_attempt": "1",
2024-08-23T14:05:20.8268451Z   "artifact_cache_size_limit": "10",
2024-08-23T14:05:20.8268954Z   "repository_visibility": "public",
2024-08-23T14:05:20.8269765Z   "repo-self-hosted-runners-disabled": false,
2024-08-23T14:05:20.8270505Z   "enterprise-managed-business-id": "",
2024-08-23T14:05:20.8271022Z   "repository_id": "846579865",
2024-08-23T14:05:20.8271535Z   "actor_id": "717869",
2024-08-23T14:05:20.8272067Z   "actor": "qkdreyer",
2024-08-23T14:05:20.8272479Z   "triggering_actor": "qkdreyer",
2024-08-23T14:05:20.8272973Z   "workflow": "Workflow Run",
2024-08-23T14:05:20.8273480Z   "head_ref": "",
2024-08-23T14:05:20.8273838Z   "base_ref": "",
2024-08-23T14:05:20.8274231Z   "event_name": "workflow_run",
2024-08-23T14:05:20.8274754Z   "event": {
2024-08-23T14:05:20.8275108Z     "action": "completed",
2024-08-23T14:05:20.8275553Z     "repository": {
2024-08-23T14:05:20.8276018Z       "allow_forking": true,
2024-08-23T14:05:20.8276980Z       "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
2024-08-23T14:05:20.8277855Z       "archived": false,
2024-08-23T14:05:20.8278667Z       "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
2024-08-23T14:05:20.8279750Z       "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
2024-08-23T14:05:20.8280798Z       "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
2024-08-23T14:05:20.8281851Z       "clone_url": "https://github.com/qkdreyer/workflows.git",
2024-08-23T14:05:20.8282933Z       "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
2024-08-23T14:05:20.8284143Z       "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
2024-08-23T14:05:20.8285307Z       "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
2024-08-23T14:05:20.8286451Z       "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
2024-08-23T14:05:20.8287547Z       "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
2024-08-23T14:05:20.8288733Z       "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
2024-08-23T14:05:20.8289666Z       "created_at": "2024-08-23T14:03:17Z",
2024-08-23T14:05:20.8290211Z       "default_branch": "main",
2024-08-23T14:05:20.8290998Z       "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
2024-08-23T14:05:20.8291831Z       "description": null,
2024-08-23T14:05:20.8292289Z       "disabled": false,
2024-08-23T14:05:20.8293005Z       "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
2024-08-23T14:05:20.8294023Z       "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
2024-08-23T14:05:20.8294766Z       "fork": false,
2024-08-23T14:05:20.8295184Z       "forks": 0,
2024-08-23T14:05:20.8295567Z       "forks_count": 0,
2024-08-23T14:05:20.8296201Z       "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
2024-08-23T14:05:20.8296970Z       "full_name": "qkdreyer/workflows",
2024-08-23T14:05:20.8298113Z       "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
2024-08-23T14:05:20.8299223Z       "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
2024-08-23T14:05:20.8300318Z       "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
2024-08-23T14:05:20.8301225Z       "git_url": "git://github.com/qkdreyer/workflows.git",
2024-08-23T14:05:20.8301841Z       "has_discussions": false,
2024-08-23T14:05:20.8302340Z       "has_downloads": true,
2024-08-23T14:05:20.8302808Z       "has_issues": true,
2024-08-23T14:05:20.8303412Z       "has_pages": false,
2024-08-23T14:05:20.8303876Z       "has_projects": true,
2024-08-23T14:05:20.8304335Z       "has_wiki": true,
2024-08-23T14:05:20.8304741Z       "homepage": null,
2024-08-23T14:05:20.8305429Z       "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
2024-08-23T14:05:20.8306250Z       "html_url": "https://github.com/qkdreyer/workflows",
2024-08-23T14:05:20.8306844Z       "id": 846579865,
2024-08-23T14:05:20.8307317Z       "is_template": false,
2024-08-23T14:05:20.8308152Z       "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
2024-08-23T14:05:20.8309407Z       "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
2024-08-23T14:05:20.8310630Z       "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
2024-08-23T14:05:20.8311621Z       "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
2024-08-23T14:05:20.8312631Z       "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
2024-08-23T14:05:20.8313480Z       "language": null,
2024-08-23T14:05:20.8314111Z       "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
2024-08-23T14:05:20.8315057Z       "license": null,
2024-08-23T14:05:20.8315780Z       "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
2024-08-23T14:05:20.8316802Z       "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
2024-08-23T14:05:20.8317657Z       "mirror_url": null,
2024-08-23T14:05:20.8318154Z       "name": "workflows",
2024-08-23T14:05:20.8318563Z       "node_id": "R_kgDOMnXImQ",
2024-08-23T14:05:20.8319573Z       "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
2024-08-23T14:05:20.8320671Z       "open_issues": 1,
2024-08-23T14:05:20.8321109Z       "open_issues_count": 1,
2024-08-23T14:05:20.8321518Z       "owner": {
2024-08-23T14:05:20.8322273Z         "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:05:20.8323221Z         "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:05:20.8324139Z         "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:05:20.8325186Z         "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:05:20.8326181Z         "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:05:20.8326850Z         "gravatar_id": "",
2024-08-23T14:05:20.8327411Z         "html_url": "https://github.com/qkdreyer",
2024-08-23T14:05:20.8327985Z         "id": 717869,
2024-08-23T14:05:20.8328385Z         "login": "qkdreyer",
2024-08-23T14:05:20.8328895Z         "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:05:20.8329635Z         "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:05:20.8330592Z         "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:05:20.8331580Z         "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:05:20.8332233Z         "site_admin": false,
2024-08-23T14:05:20.8332961Z         "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:05:20.8334026Z         "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:05:20.8334781Z         "type": "User",
2024-08-23T14:05:20.8335267Z         "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:05:20.8335874Z       },
2024-08-23T14:05:20.8336220Z       "private": false,
2024-08-23T14:05:20.8336893Z       "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
2024-08-23T14:05:20.8338040Z       "pushed_at": "2024-08-23T14:04:17Z",
2024-08-23T14:05:20.8338839Z       "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
2024-08-23T14:05:20.8339630Z       "size": 0,
2024-08-23T14:05:20.8340320Z       "ssh_url": "git@github.com:qkdreyer/workflows.git",
2024-08-23T14:05:20.8340950Z       "stargazers_count": 0,
2024-08-23T14:05:20.8341682Z       "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
2024-08-23T14:05:20.8342805Z       "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
2024-08-23T14:05:20.8343838Z       "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
2024-08-23T14:05:20.8344943Z       "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
2024-08-23T14:05:20.8345935Z       "svn_url": "https://github.com/qkdreyer/workflows",
2024-08-23T14:05:20.8346683Z       "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
2024-08-23T14:05:20.8347587Z       "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
2024-08-23T14:05:20.8348354Z       "topics": [],
2024-08-23T14:05:20.8348981Z       "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
2024-08-23T14:05:20.8349836Z       "updated_at": "2024-08-23T14:04:20Z",
2024-08-23T14:05:20.8350564Z       "url": "https://api.github.com/repos/qkdreyer/workflows",
2024-08-23T14:05:20.8351209Z       "visibility": "public",
2024-08-23T14:05:20.8351802Z       "watchers": 0,
2024-08-23T14:05:20.8352332Z       "watchers_count": 0,
2024-08-23T14:05:20.8352764Z       "web_commit_signoff_required": false
2024-08-23T14:05:20.8353272Z     },
2024-08-23T14:05:20.8353682Z     "sender": {
2024-08-23T14:05:20.8354229Z       "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:05:20.8355150Z       "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:05:20.8356141Z       "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:05:20.8357102Z       "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:05:20.8358047Z       "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:05:20.8358863Z       "gravatar_id": "",
2024-08-23T14:05:20.8359350Z       "html_url": "https://github.com/qkdreyer",
2024-08-23T14:05:20.8359861Z       "id": 717869,
2024-08-23T14:05:20.8360337Z       "login": "qkdreyer",
2024-08-23T14:05:20.8360797Z       "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:05:20.8361473Z       "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:05:20.8362513Z       "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:05:20.8363422Z       "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:05:20.8364048Z       "site_admin": false,
2024-08-23T14:05:20.8364812Z       "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:05:20.8365841Z       "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:05:20.8366573Z       "type": "User",
2024-08-23T14:05:20.8367132Z       "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:05:20.8367694Z     },
2024-08-23T14:05:20.8368005Z     "workflow": {
2024-08-23T14:05:20.8368735Z       "badge_url": "https://github.com/qkdreyer/workflows/workflows/Comment/badge.svg",
2024-08-23T14:05:20.8369636Z       "created_at": "2024-08-23T14:03:58.000Z",
2024-08-23T14:05:20.8370521Z       "html_url": "https://github.com/qkdreyer/workflows/blob/main/.github/workflows/comment.yml",
2024-08-23T14:05:20.8371465Z       "id": 113818769,
2024-08-23T14:05:20.8371925Z       "name": "Comment",
2024-08-23T14:05:20.8372337Z       "node_id": "W_kwDOMnXImc4GyLyR",
2024-08-23T14:05:20.8372970Z       "path": ".github/workflows/comment.yml",
2024-08-23T14:05:20.8373532Z       "state": "active",
2024-08-23T14:05:20.8374117Z       "updated_at": "2024-08-23T14:03:58.000Z",
2024-08-23T14:05:20.8375082Z       "url": "https://api.github.com/repos/qkdreyer/workflows/actions/workflows/113818769"
2024-08-23T14:05:20.8375903Z     },
2024-08-23T14:05:20.8376203Z     "workflow_run": {
2024-08-23T14:05:20.8376825Z       "actor": {
2024-08-23T14:05:20.8377637Z         "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:05:20.8378696Z         "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:05:20.8379612Z         "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:05:20.8380591Z         "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:05:20.8381632Z         "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:05:20.8382324Z         "gravatar_id": "",
2024-08-23T14:05:20.8382820Z         "html_url": "https://github.com/qkdreyer",
2024-08-23T14:05:20.8383455Z         "id": 717869,
2024-08-23T14:05:20.8383840Z         "login": "qkdreyer",
2024-08-23T14:05:20.8384322Z         "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:05:20.8385127Z         "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:05:20.8386067Z         "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:05:20.8386987Z         "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:05:20.8387880Z         "site_admin": false,
2024-08-23T14:05:20.8388568Z         "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:05:20.8389585Z         "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:05:20.8390422Z         "type": "User",
2024-08-23T14:05:20.8390879Z         "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:05:20.8391456Z       },
2024-08-23T14:05:20.8392328Z       "artifacts_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/artifacts",
2024-08-23T14:05:20.8393670Z       "cancel_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/cancel",
2024-08-23T14:05:20.8394567Z       "check_suite_id": 27526422933,
2024-08-23T14:05:20.8395229Z       "check_suite_node_id": "CS_kwDOMnXImc8AAAAGaLPhlQ",
2024-08-23T14:05:20.8396305Z       "check_suite_url": "https://api.github.com/repos/qkdreyer/workflows/check-suites/27526422933",
2024-08-23T14:05:20.8397179Z       "conclusion": "success",
2024-08-23T14:05:20.8397796Z       "created_at": "2024-08-23T14:04:56Z",
2024-08-23T14:05:20.8398330Z       "display_title": "issue",
2024-08-23T14:05:20.8398782Z       "event": "issue_comment",
2024-08-23T14:05:20.8399333Z       "head_branch": "main",
2024-08-23T14:05:20.8399770Z       "head_commit": {
2024-08-23T14:05:20.8400172Z         "author": {
2024-08-23T14:05:20.8400679Z           "email": "quentin.dreyer@gmail.com",
2024-08-23T14:05:20.8401252Z           "name": "Quentin Dreyer"
2024-08-23T14:05:20.8401676Z         },
2024-08-23T14:05:20.8402077Z         "committer": {
2024-08-23T14:05:20.8402528Z           "email": "noreply@github.com",
2024-08-23T14:05:20.8403004Z           "name": "GitHub"
2024-08-23T14:05:20.8403468Z         },
2024-08-23T14:05:20.8403943Z         "id": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
2024-08-23T14:05:20.8404629Z         "message": "Create workflow-run.yml",
2024-08-23T14:05:20.8405326Z         "timestamp": "2024-08-23T14:04:17Z",
2024-08-23T14:05:20.8405991Z         "tree_id": "972d18cb0aa64e8f741fba8155a96e435eb47255"
2024-08-23T14:05:20.8406575Z       },
2024-08-23T14:05:20.8406987Z       "head_repository": {
2024-08-23T14:05:20.8407786Z         "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
2024-08-23T14:05:20.8408901Z         "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
2024-08-23T14:05:20.8410039Z         "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
2024-08-23T14:05:20.8411154Z         "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
2024-08-23T14:05:20.8412372Z         "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
2024-08-23T14:05:20.8413873Z         "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
2024-08-23T14:05:20.8414958Z         "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
2024-08-23T14:05:20.8416085Z         "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
2024-08-23T14:05:20.8417278Z         "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
2024-08-23T14:05:20.8418748Z         "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
2024-08-23T14:05:20.8419872Z         "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
2024-08-23T14:05:20.8420725Z         "description": null,
2024-08-23T14:05:20.8421428Z         "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
2024-08-23T14:05:20.8422420Z         "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
2024-08-23T14:05:20.8423223Z         "fork": false,
2024-08-23T14:05:20.8423846Z         "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
2024-08-23T14:05:20.8424579Z         "full_name": "qkdreyer/workflows",
2024-08-23T14:05:20.8425653Z         "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
2024-08-23T14:05:20.8426798Z         "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
2024-08-23T14:05:20.8427856Z         "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
2024-08-23T14:05:20.8428908Z         "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
2024-08-23T14:05:20.8429743Z         "html_url": "https://github.com/qkdreyer/workflows",
2024-08-23T14:05:20.8430349Z         "id": 846579865,
2024-08-23T14:05:20.8431203Z         "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
2024-08-23T14:05:20.8432504Z         "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
2024-08-23T14:05:20.8433647Z         "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
2024-08-23T14:05:20.8434711Z         "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
2024-08-23T14:05:20.8435773Z         "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
2024-08-23T14:05:20.8436803Z         "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
2024-08-23T14:05:20.8437867Z         "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
2024-08-23T14:05:20.8438891Z         "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
2024-08-23T14:05:20.8439740Z         "name": "workflows",
2024-08-23T14:05:20.8440300Z         "node_id": "R_kgDOMnXImQ",
2024-08-23T14:05:20.8441276Z         "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
2024-08-23T14:05:20.8442303Z         "owner": {
2024-08-23T14:05:20.8442974Z           "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:05:20.8443885Z           "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:05:20.8444812Z           "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:05:20.8445875Z           "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:05:20.8446833Z           "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:05:20.8447555Z           "gravatar_id": "",
2024-08-23T14:05:20.8448147Z           "html_url": "https://github.com/qkdreyer",
2024-08-23T14:05:20.8448675Z           "id": 717869,
2024-08-23T14:05:20.8449106Z           "login": "qkdreyer",
2024-08-23T14:05:20.8449689Z           "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:05:20.8450384Z           "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:05:20.8451538Z           "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:05:20.8452535Z           "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:05:20.8453208Z           "site_admin": false,
2024-08-23T14:05:20.8453887Z           "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:05:20.8454995Z           "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:05:20.8455781Z           "type": "User",
2024-08-23T14:05:20.8456263Z           "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:05:20.8456907Z         },
2024-08-23T14:05:20.8457287Z         "private": false,
2024-08-23T14:05:20.8458228Z         "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
2024-08-23T14:05:20.8459424Z         "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
2024-08-23T14:05:20.8460518Z         "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
2024-08-23T14:05:20.8461547Z         "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
2024-08-23T14:05:20.8462861Z         "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
2024-08-23T14:05:20.8463982Z         "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
2024-08-23T14:05:20.8465062Z         "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
2024-08-23T14:05:20.8465953Z         "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
2024-08-23T14:05:20.8466931Z         "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
2024-08-23T14:05:20.8467903Z         "url": "https://api.github.com/repos/qkdreyer/workflows"
2024-08-23T14:05:20.8468506Z       },
2024-08-23T14:05:20.8468999Z       "head_sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
2024-08-23T14:05:20.8469945Z       "html_url": "https://github.com/qkdreyer/workflows/actions/runs/10527115931",
2024-08-23T14:05:20.8470691Z       "id": 10527115931,
2024-08-23T14:05:20.8471469Z       "jobs_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/jobs",
2024-08-23T14:05:20.8472822Z       "logs_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/logs",
2024-08-23T14:05:20.8473658Z       "name": "Comment",
2024-08-23T14:05:20.8474139Z       "node_id": "WFR_kwLOMnXImc8AAAACc3cKmw",
2024-08-23T14:05:20.8474833Z       "path": ".github/workflows/comment.yml",
2024-08-23T14:05:20.8475373Z       "previous_attempt_url": null,
2024-08-23T14:05:20.8475909Z       "pull_requests": [],
2024-08-23T14:05:20.8476440Z       "referenced_workflows": [],
2024-08-23T14:05:20.8476891Z       "repository": {
2024-08-23T14:05:20.8477660Z         "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
2024-08-23T14:05:20.8478909Z         "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
2024-08-23T14:05:20.8479997Z         "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
2024-08-23T14:05:20.8481058Z         "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
2024-08-23T14:05:20.8482387Z         "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
2024-08-23T14:05:20.8483645Z         "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
2024-08-23T14:05:20.8484699Z         "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
2024-08-23T14:05:20.8485898Z         "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
2024-08-23T14:05:20.8487060Z         "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
2024-08-23T14:05:20.8488188Z         "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
2024-08-23T14:05:20.8489491Z         "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
2024-08-23T14:05:20.8490332Z         "description": null,
2024-08-23T14:05:20.8491058Z         "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
2024-08-23T14:05:20.8492076Z         "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
2024-08-23T14:05:20.8492819Z         "fork": false,
2024-08-23T14:05:20.8493427Z         "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
2024-08-23T14:05:20.8494198Z         "full_name": "qkdreyer/workflows",
2024-08-23T14:05:20.8495064Z         "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
2024-08-23T14:05:20.8496174Z         "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
2024-08-23T14:05:20.8497262Z         "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
2024-08-23T14:05:20.8498962Z         "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
2024-08-23T14:05:20.8499803Z         "html_url": "https://github.com/qkdreyer/workflows",
2024-08-23T14:05:20.8500671Z         "id": 846579865,
2024-08-23T14:05:20.8501498Z         "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
2024-08-23T14:05:20.8502759Z         "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
2024-08-23T14:05:20.8503982Z         "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
2024-08-23T14:05:20.8504974Z         "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
2024-08-23T14:05:20.8505986Z         "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
2024-08-23T14:05:20.8507087Z         "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
2024-08-23T14:05:20.8508034Z         "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
2024-08-23T14:05:20.8509088Z         "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
2024-08-23T14:05:20.8510017Z         "name": "workflows",
2024-08-23T14:05:20.8510477Z         "node_id": "R_kgDOMnXImQ",
2024-08-23T14:05:20.8511449Z         "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
2024-08-23T14:05:20.8512563Z         "owner": {
2024-08-23T14:05:20.8513154Z           "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:05:20.8514072Z           "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:05:20.8515062Z           "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:05:20.8516046Z           "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:05:20.8517012Z           "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:05:20.8517796Z           "gravatar_id": "",
2024-08-23T14:05:20.8518309Z           "html_url": "https://github.com/qkdreyer",
2024-08-23T14:05:20.8518852Z           "id": 717869,
2024-08-23T14:05:20.8519346Z           "login": "qkdreyer",
2024-08-23T14:05:20.8519847Z           "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:05:20.8520561Z           "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:05:20.8521678Z           "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:05:20.8522614Z           "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:05:20.8523265Z           "site_admin": false,
2024-08-23T14:05:20.8524006Z           "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:05:20.8525041Z           "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:05:20.8525959Z           "type": "User",
2024-08-23T14:05:20.8526498Z           "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:05:20.8527086Z         },
2024-08-23T14:05:20.8527439Z         "private": false,
2024-08-23T14:05:20.8528165Z         "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
2024-08-23T14:05:20.8529232Z         "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
2024-08-23T14:05:20.8530301Z         "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
2024-08-23T14:05:20.8531405Z         "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
2024-08-23T14:05:20.8532477Z         "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
2024-08-23T14:05:20.8533573Z         "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
2024-08-23T14:05:20.8534651Z         "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
2024-08-23T14:05:20.8535521Z         "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
2024-08-23T14:05:20.8536488Z         "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
2024-08-23T14:05:20.8537993Z         "url": "https://api.github.com/repos/qkdreyer/workflows"
2024-08-23T14:05:20.8538650Z       },
2024-08-23T14:05:20.8539453Z       "rerun_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931/rerun",
2024-08-23T14:05:20.8540445Z       "run_attempt": 1,
2024-08-23T14:05:20.8540827Z       "run_number": 1,
2024-08-23T14:05:20.8541427Z       "run_started_at": "2024-08-23T14:04:56Z",
2024-08-23T14:05:20.8542050Z       "status": "completed",
2024-08-23T14:05:20.8542471Z       "triggering_actor": {
2024-08-23T14:05:20.8543139Z         "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:05:20.8544152Z         "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:05:20.8545045Z         "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:05:20.8546045Z         "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:05:20.8547095Z         "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:05:20.8547823Z         "gravatar_id": "",
2024-08-23T14:05:20.8548282Z         "html_url": "https://github.com/qkdreyer",
2024-08-23T14:05:20.8548906Z         "id": 717869,
2024-08-23T14:05:20.8549343Z         "login": "qkdreyer",
2024-08-23T14:05:20.8549795Z         "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:05:20.8550586Z         "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:05:20.8551567Z         "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:05:20.8552450Z         "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:05:20.8553202Z         "site_admin": false,
2024-08-23T14:05:20.8553926Z         "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:05:20.8554914Z         "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:05:20.8555732Z         "type": "User",
2024-08-23T14:05:20.8556247Z         "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:05:20.8556777Z       },
2024-08-23T14:05:20.8557289Z       "updated_at": "2024-08-23T14:05:12Z",
2024-08-23T14:05:20.8558135Z       "url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527115931",
2024-08-23T14:05:20.8558918Z       "workflow_id": 113818769,
2024-08-23T14:05:20.8559846Z       "workflow_url": "https://api.github.com/repos/qkdreyer/workflows/actions/workflows/113818769"
2024-08-23T14:05:20.8560735Z     }
2024-08-23T14:05:20.8561013Z   },
2024-08-23T14:05:20.8561456Z   "server_url": "https://github.com",
2024-08-23T14:05:20.8562006Z   "api_url": "https://api.github.com",
2024-08-23T14:05:20.8562572Z   "graphql_url": "https://api.github.com/graphql",
2024-08-23T14:05:20.8563405Z   "ref_name": "main",
2024-08-23T14:05:20.8563818Z   "ref_protected": false,
2024-08-23T14:05:20.8564233Z   "ref_type": "branch",
2024-08-23T14:05:20.8564722Z   "secret_source": "Actions",
2024-08-23T14:05:20.8565607Z   "workflow_ref": "qkdreyer/workflows/.github/workflows/workflow-run.yml@refs/heads/main",
2024-08-23T14:05:20.8566574Z   "workflow_sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
2024-08-23T14:05:20.8567390Z   "workspace": "/home/runner/work/workflows/workflows",
2024-08-23T14:05:20.8567989Z   "action": "__run"
2024-08-23T14:05:20.8568339Z }
2024-08-23T14:05:20.8840121Z Cleaning up orphan processes
Details
2024-08-23T14:06:00.5083136Z Current runner version: '2.319.1'
2024-08-23T14:06:00.5105373Z ##[group]Operating System
2024-08-23T14:06:00.5105951Z Ubuntu
2024-08-23T14:06:00.5106424Z 22.04.4
2024-08-23T14:06:00.5106747Z LTS
2024-08-23T14:06:00.5107035Z ##[endgroup]
2024-08-23T14:06:00.5107498Z ##[group]Runner Image
2024-08-23T14:06:00.5108117Z Image: ubuntu-22.04
2024-08-23T14:06:00.5108484Z Version: 20240818.1.0
2024-08-23T14:06:00.5109571Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240818.1/images/ubuntu/Ubuntu2204-Readme.md
2024-08-23T14:06:00.5110989Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240818.1
2024-08-23T14:06:00.5111857Z ##[endgroup]
2024-08-23T14:06:00.5112273Z ##[group]Runner Image Provisioner
2024-08-23T14:06:00.5112746Z 2.0.382.1
2024-08-23T14:06:00.5113038Z ##[endgroup]
2024-08-23T14:06:00.5127400Z ##[group]GITHUB_TOKEN Permissions
2024-08-23T14:06:00.5129102Z Contents: read
2024-08-23T14:06:00.5129513Z Metadata: read
2024-08-23T14:06:00.5130079Z Packages: read
2024-08-23T14:06:00.5130619Z ##[endgroup]
2024-08-23T14:06:00.5133486Z Secret source: Actions
2024-08-23T14:06:00.5134125Z Prepare workflow directory
2024-08-23T14:06:00.5744433Z Prepare all required actions
2024-08-23T14:06:00.5971723Z Complete job name: dump
2024-08-23T14:06:00.7145944Z ##[group]Run echo "$GITHUB_CONTEXT"
2024-08-23T14:06:00.7146745Z �[36;1mecho "$GITHUB_CONTEXT"�[0m
2024-08-23T14:06:00.7528287Z shell: /usr/bin/bash -e {0}
2024-08-23T14:06:00.7528816Z env:
2024-08-23T14:06:00.7663483Z   GITHUB_CONTEXT: {
  "token": "***",
  "job": "dump",
  "ref": "refs/heads/main",
  "sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
  "repository": "qkdreyer/workflows",
  "repository_owner": "qkdreyer",
  "repository_owner_id": "717869",
  "repositoryUrl": "git://github.com/qkdreyer/workflows.git",
  "run_id": "10527130272",
  "run_number": "2",
  "retention_days": "90",
  "run_attempt": "1",
  "artifact_cache_size_limit": "10",
  "repository_visibility": "public",
  "repo-self-hosted-runners-disabled": false,
  "enterprise-managed-business-id": "",
  "repository_id": "846579865",
  "actor_id": "717869",
  "actor": "qkdreyer",
  "triggering_actor": "qkdreyer",
  "workflow": "Workflow Run",
  "head_ref": "",
  "base_ref": "",
  "event_name": "workflow_run",
  "event": {
    "action": "completed",
    "repository": {
      "allow_forking": true,
      "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
      "archived": false,
      "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
      "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
      "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
      "clone_url": "https://github.com/qkdreyer/workflows.git",
      "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
      "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
      "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
      "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
      "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
      "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
      "created_at": "2024-08-23T14:03:17Z",
      "default_branch": "main",
      "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
      "description": null,
      "disabled": false,
      "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
      "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
      "fork": false,
      "forks": 0,
      "forks_count": 0,
      "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
      "full_name": "qkdreyer/workflows",
      "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
      "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
      "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
      "git_url": "git://github.com/qkdreyer/workflows.git",
      "has_discussions": false,
      "has_downloads": true,
      "has_issues": true,
      "has_pages": false,
      "has_projects": true,
      "has_wiki": true,
      "homepage": null,
      "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
      "html_url": "https://github.com/qkdreyer/workflows",
      "id": 846579865,
      "is_template": false,
      "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
      "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
      "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
      "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
      "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
      "language": null,
      "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
      "license": null,
      "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
      "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
      "mirror_url": null,
      "name": "workflows",
      "node_id": "R_kgDOMnXImQ",
      "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
      "open_issues": 2,
      "open_issues_count": 2,
      "owner": {
        "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
        "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
        "followers_url": "https://api.github.com/users/qkdreyer/followers",
        "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
        "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
        "gravatar_id": "",
        "html_url": "https://github.com/qkdreyer",
        "id": 717869,
        "login": "qkdreyer",
        "node_id": "MDQ6VXNlcjcxNzg2OQ==",
        "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
        "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
        "repos_url": "https://api.github.com/users/qkdreyer/repos",
        "site_admin": false,
        "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
        "type": "User",
        "url": "https://api.github.com/users/qkdreyer"
      },
      "private": false,
      "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
      "pushed_at": "2024-08-23T14:05:21Z",
      "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
      "size": 0,
      "ssh_url": "git@github.com:qkdreyer/workflows.git",
      "stargazers_count": 0,
      "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
      "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
      "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
      "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
      "svn_url": "https://github.com/qkdreyer/workflows",
      "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
      "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
      "topics": [],
      "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
      "updated_at": "2024-08-23T14:04:20Z",
      "url": "https://api.github.com/repos/qkdreyer/workflows",
      "visibility": "public",
      "watchers": 0,
      "watchers_count": 0,
      "web_commit_signoff_required": false
    },
    "sender": {
      "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
      "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
      "followers_url": "https://api.github.com/users/qkdreyer/followers",
      "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
      "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
      "gravatar_id": "",
      "html_url": "https://github.com/qkdreyer",
      "id": 717869,
      "login": "qkdreyer",
      "node_id": "MDQ6VXNlcjcxNzg2OQ==",
      "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
      "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
      "repos_url": "https://api.github.com/users/qkdreyer/repos",
      "site_admin": false,
      "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
      "type": "User",
      "url": "https://api.github.com/users/qkdreyer"
    },
    "workflow": {
      "badge_url": "https://github.com/qkdreyer/workflows/workflows/Comment/badge.svg",
      "created_at": "2024-08-23T14:03:58.000Z",
      "html_url": "https://github.com/qkdreyer/workflows/blob/main/.github/workflows/comment.yml",
      "id": 113818769,
      "name": "Comment",
      "node_id": "W_kwDOMnXImc4GyLyR",
      "path": ".github/workflows/comment.yml",
      "state": "active",
      "updated_at": "2024-08-23T14:03:58.000Z",
      "url": "https://api.github.com/repos/qkdreyer/workflows/actions/workflows/113818769"
    },
    "workflow_run": {
      "actor": {
        "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
        "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
        "followers_url": "https://api.github.com/users/qkdreyer/followers",
        "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
        "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
        "gravatar_id": "",
        "html_url": "https://github.com/qkdreyer",
        "id": 717869,
        "login": "qkdreyer",
        "node_id": "MDQ6VXNlcjcxNzg2OQ==",
        "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
        "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
        "repos_url": "https://api.github.com/users/qkdreyer/repos",
        "site_admin": false,
        "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
        "type": "User",
        "url": "https://api.github.com/users/qkdreyer"
      },
      "artifacts_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/artifacts",
      "cancel_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/cancel",
      "check_suite_id": 27526452702,
      "check_suite_node_id": "CS_kwDOMnXImc8AAAAGaLRV3g",
      "check_suite_url": "https://api.github.com/repos/qkdreyer/workflows/check-suites/27526452702",
      "conclusion": "success",
      "created_at": "2024-08-23T14:05:37Z",
      "display_title": "pr",
      "event": "issue_comment",
      "head_branch": "main",
      "head_commit": {
        "author": {
          "email": "quentin.dreyer@gmail.com",
          "name": "Quentin Dreyer"
        },
        "committer": {
          "email": "noreply@github.com",
          "name": "GitHub"
        },
        "id": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
        "message": "Create workflow-run.yml",
        "timestamp": "2024-08-23T14:04:17Z",
        "tree_id": "972d18cb0aa64e8f741fba8155a96e435eb47255"
      },
      "head_repository": {
        "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
        "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
        "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
        "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
        "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
        "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
        "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
        "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
        "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
        "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
        "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
        "description": null,
        "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
        "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
        "fork": false,
        "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
        "full_name": "qkdreyer/workflows",
        "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
        "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
        "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
        "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
        "html_url": "https://github.com/qkdreyer/workflows",
        "id": 846579865,
        "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
        "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
        "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
        "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
        "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
        "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
        "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
        "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
        "name": "workflows",
        "node_id": "R_kgDOMnXImQ",
        "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
        "owner": {
          "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
          "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
          "followers_url": "https://api.github.com/users/qkdreyer/followers",
          "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
          "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
          "gravatar_id": "",
          "html_url": "https://github.com/qkdreyer",
          "id": 717869,
          "login": "qkdreyer",
          "node_id": "MDQ6VXNlcjcxNzg2OQ==",
          "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
          "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
          "repos_url": "https://api.github.com/users/qkdreyer/repos",
          "site_admin": false,
          "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
          "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
          "type": "User",
          "url": "https://api.github.com/users/qkdreyer"
        },
        "private": false,
        "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
        "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
        "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
        "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
        "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
        "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
        "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
        "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
        "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
        "url": "https://api.github.com/repos/qkdreyer/workflows"
      },
      "head_sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
      "html_url": "https://github.com/qkdreyer/workflows/actions/runs/10527126838",
      "id": 10527126838,
      "jobs_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/jobs",
      "logs_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/logs",
      "name": "Comment",
      "node_id": "WFR_kwLOMnXImc8AAAACc3c1Ng",
      "path": ".github/workflows/comment.yml",
      "previous_attempt_url": null,
      "pull_requests": [],
      "referenced_workflows": [],
      "repository": {
        "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
        "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
        "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
        "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
        "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
        "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
        "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
        "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
        "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
        "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
        "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
        "description": null,
        "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
        "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
        "fork": false,
        "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
        "full_name": "qkdreyer/workflows",
        "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
        "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
        "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
        "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
        "html_url": "https://github.com/qkdreyer/workflows",
        "id": 846579865,
        "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
        "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
        "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
        "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
        "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
        "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
        "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
        "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
        "name": "workflows",
        "node_id": "R_kgDOMnXImQ",
        "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
        "owner": {
          "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
          "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
          "followers_url": "https://api.github.com/users/qkdreyer/followers",
          "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
          "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
          "gravatar_id": "",
          "html_url": "https://github.com/qkdreyer",
          "id": 717869,
          "login": "qkdreyer",
          "node_id": "MDQ6VXNlcjcxNzg2OQ==",
          "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
          "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
          "repos_url": "https://api.github.com/users/qkdreyer/repos",
          "site_admin": false,
          "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
          "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
          "type": "User",
          "url": "https://api.github.com/users/qkdreyer"
        },
        "private": false,
        "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
        "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
        "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
        "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
        "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
        "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
        "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
        "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
        "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
        "url": "https://api.github.com/repos/qkdreyer/workflows"
      },
      "rerun_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/rerun",
      "run_attempt": 1,
      "run_number": 2,
      "run_started_at": "2024-08-23T14:05:37Z",
      "status": "completed",
      "triggering_actor": {
        "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
        "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
        "followers_url": "https://api.github.com/users/qkdreyer/followers",
        "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
        "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
        "gravatar_id": "",
        "html_url": "https://github.com/qkdreyer",
        "id": 717869,
        "login": "qkdreyer",
        "node_id": "MDQ6VXNlcjcxNzg2OQ==",
        "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
        "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
        "repos_url": "https://api.github.com/users/qkdreyer/repos",
        "site_admin": false,
        "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
        "type": "User",
        "url": "https://api.github.com/users/qkdreyer"
      },
      "updated_at": "2024-08-23T14:05:51Z",
      "url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838",
      "workflow_id": 113818769,
      "workflow_url": "https://api.github.com/repos/qkdreyer/workflows/actions/workflows/113818769"
    }
  },
  "server_url": "https://github.com",
  "api_url": "https://api.github.com",
  "graphql_url": "https://api.github.com/graphql",
  "ref_name": "main",
  "ref_protected": false,
  "ref_type": "branch",
  "secret_source": "Actions",
  "workflow_ref": "qkdreyer/workflows/.github/workflows/workflow-run.yml@refs/heads/main",
  "workflow_sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
  "workspace": "/home/runner/work/workflows/workflows",
  "action": "__run"
}
2024-08-23T14:06:00.7796309Z ##[endgroup]
2024-08-23T14:06:00.8202423Z {
2024-08-23T14:06:00.8203964Z   "token": "***",
2024-08-23T14:06:00.8204363Z   "job": "dump",
2024-08-23T14:06:00.8204872Z   "ref": "refs/heads/main",
2024-08-23T14:06:00.8205440Z   "sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
2024-08-23T14:06:00.8206033Z   "repository": "qkdreyer/workflows",
2024-08-23T14:06:00.8206621Z   "repository_owner": "qkdreyer",
2024-08-23T14:06:00.8207132Z   "repository_owner_id": "717869",
2024-08-23T14:06:00.8207992Z   "repositoryUrl": "git://github.com/qkdreyer/workflows.git",
2024-08-23T14:06:00.8208744Z   "run_id": "10527130272",
2024-08-23T14:06:00.8209175Z   "run_number": "2",
2024-08-23T14:06:00.8209538Z   "retention_days": "90",
2024-08-23T14:06:00.8210042Z   "run_attempt": "1",
2024-08-23T14:06:00.8210463Z   "artifact_cache_size_limit": "10",
2024-08-23T14:06:00.8210954Z   "repository_visibility": "public",
2024-08-23T14:06:00.8211814Z   "repo-self-hosted-runners-disabled": false,
2024-08-23T14:06:00.8212479Z   "enterprise-managed-business-id": "",
2024-08-23T14:06:00.8213035Z   "repository_id": "846579865",
2024-08-23T14:06:00.8213569Z   "actor_id": "717869",
2024-08-23T14:06:00.8213973Z   "actor": "qkdreyer",
2024-08-23T14:06:00.8214354Z   "triggering_actor": "qkdreyer",
2024-08-23T14:06:00.8214915Z   "workflow": "Workflow Run",
2024-08-23T14:06:00.8215362Z   "head_ref": "",
2024-08-23T14:06:00.8215690Z   "base_ref": "",
2024-08-23T14:06:00.8216161Z   "event_name": "workflow_run",
2024-08-23T14:06:00.8216634Z   "event": {
2024-08-23T14:06:00.8216982Z     "action": "completed",
2024-08-23T14:06:00.8217487Z     "repository": {
2024-08-23T14:06:00.8217911Z       "allow_forking": true,
2024-08-23T14:06:00.8218841Z       "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
2024-08-23T14:06:00.8219779Z       "archived": false,
2024-08-23T14:06:00.8220523Z       "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
2024-08-23T14:06:00.8221598Z       "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
2024-08-23T14:06:00.8222693Z       "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
2024-08-23T14:06:00.8223655Z       "clone_url": "https://github.com/qkdreyer/workflows.git",
2024-08-23T14:06:00.8224723Z       "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
2024-08-23T14:06:00.8226039Z       "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
2024-08-23T14:06:00.8227133Z       "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
2024-08-23T14:06:00.8228494Z       "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
2024-08-23T14:06:00.8229702Z       "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
2024-08-23T14:06:00.8230829Z       "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
2024-08-23T14:06:00.8231745Z       "created_at": "2024-08-23T14:03:17Z",
2024-08-23T14:06:00.8232351Z       "default_branch": "main",
2024-08-23T14:06:00.8233057Z       "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
2024-08-23T14:06:00.8233861Z       "description": null,
2024-08-23T14:06:00.8234371Z       "disabled": false,
2024-08-23T14:06:00.8235010Z       "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
2024-08-23T14:06:00.8235991Z       "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
2024-08-23T14:06:00.8236787Z       "fork": false,
2024-08-23T14:06:00.8237135Z       "forks": 0,
2024-08-23T14:06:00.8237508Z       "forks_count": 0,
2024-08-23T14:06:00.8238202Z       "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
2024-08-23T14:06:00.8238904Z       "full_name": "qkdreyer/workflows",
2024-08-23T14:06:00.8239742Z       "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
2024-08-23T14:06:00.8240907Z       "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
2024-08-23T14:06:00.8241917Z       "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
2024-08-23T14:06:00.8242792Z       "git_url": "git://github.com/qkdreyer/workflows.git",
2024-08-23T14:06:00.8243475Z       "has_discussions": false,
2024-08-23T14:06:00.8243909Z       "has_downloads": true,
2024-08-23T14:06:00.8244362Z       "has_issues": true,
2024-08-23T14:06:00.8245027Z       "has_pages": false,
2024-08-23T14:06:00.8245417Z       "has_projects": true,
2024-08-23T14:06:00.8245880Z       "has_wiki": true,
2024-08-23T14:06:00.8246353Z       "homepage": null,
2024-08-23T14:06:00.8246964Z       "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
2024-08-23T14:06:00.8247807Z       "html_url": "https://github.com/qkdreyer/workflows",
2024-08-23T14:06:00.8248481Z       "id": 846579865,
2024-08-23T14:06:00.8248856Z       "is_template": false,
2024-08-23T14:06:00.8249713Z       "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
2024-08-23T14:06:00.8251038Z       "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
2024-08-23T14:06:00.8252194Z       "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
2024-08-23T14:06:00.8253184Z       "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
2024-08-23T14:06:00.8254265Z       "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
2024-08-23T14:06:00.8255063Z       "language": null,
2024-08-23T14:06:00.8255704Z       "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
2024-08-23T14:06:00.8256698Z       "license": null,
2024-08-23T14:06:00.8257346Z       "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
2024-08-23T14:06:00.8258365Z       "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
2024-08-23T14:06:00.8259304Z       "mirror_url": null,
2024-08-23T14:06:00.8259728Z       "name": "workflows",
2024-08-23T14:06:00.8260132Z       "node_id": "R_kgDOMnXImQ",
2024-08-23T14:06:00.8261216Z       "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
2024-08-23T14:06:00.8262250Z       "open_issues": 2,
2024-08-23T14:06:00.8262666Z       "open_issues_count": 2,
2024-08-23T14:06:00.8263155Z       "owner": {
2024-08-23T14:06:00.8263755Z         "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:06:00.8264717Z         "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:06:00.8265675Z         "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:06:00.8266655Z         "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:06:00.8267651Z         "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:06:00.8268710Z         "gravatar_id": "",
2024-08-23T14:06:00.8269226Z         "html_url": "https://github.com/qkdreyer",
2024-08-23T14:06:00.8269799Z         "id": 717869,
2024-08-23T14:06:00.8270260Z         "login": "qkdreyer",
2024-08-23T14:06:00.8270703Z         "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:06:00.8271444Z         "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:06:00.8272473Z         "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:06:00.8273382Z         "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:06:00.8274053Z         "site_admin": false,
2024-08-23T14:06:00.8274822Z         "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:06:00.8275806Z         "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:06:00.8276584Z         "type": "User",
2024-08-23T14:06:00.8277140Z         "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:06:00.8277684Z       },
2024-08-23T14:06:00.8278027Z       "private": false,
2024-08-23T14:06:00.8278764Z       "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
2024-08-23T14:06:00.8279622Z       "pushed_at": "2024-08-23T14:05:21Z",
2024-08-23T14:06:00.8280411Z       "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
2024-08-23T14:06:00.8281245Z       "size": 0,
2024-08-23T14:06:00.8281891Z       "ssh_url": "git@github.com:qkdreyer/workflows.git",
2024-08-23T14:06:00.8282495Z       "stargazers_count": 0,
2024-08-23T14:06:00.8283290Z       "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
2024-08-23T14:06:00.8284345Z       "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
2024-08-23T14:06:00.8285380Z       "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
2024-08-23T14:06:00.8286554Z       "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
2024-08-23T14:06:00.8287461Z       "svn_url": "https://github.com/qkdreyer/workflows",
2024-08-23T14:06:00.8288200Z       "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
2024-08-23T14:06:00.8289173Z       "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
2024-08-23T14:06:00.8289879Z       "topics": [],
2024-08-23T14:06:00.8290486Z       "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
2024-08-23T14:06:00.8291434Z       "updated_at": "2024-08-23T14:04:20Z",
2024-08-23T14:06:00.8292099Z       "url": "https://api.github.com/repos/qkdreyer/workflows",
2024-08-23T14:06:00.8292722Z       "visibility": "public",
2024-08-23T14:06:00.8293417Z       "watchers": 0,
2024-08-23T14:06:00.8293824Z       "watchers_count": 0,
2024-08-23T14:06:00.8294269Z       "web_commit_signoff_required": false
2024-08-23T14:06:00.8294851Z     },
2024-08-23T14:06:00.8295174Z     "sender": {
2024-08-23T14:06:00.8295731Z       "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:06:00.8296715Z       "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:06:00.8297652Z       "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:06:00.8298692Z       "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:06:00.8299647Z       "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:06:00.8300371Z       "gravatar_id": "",
2024-08-23T14:06:00.8300910Z       "html_url": "https://github.com/qkdreyer",
2024-08-23T14:06:00.8301420Z       "id": 717869,
2024-08-23T14:06:00.8301816Z       "login": "qkdreyer",
2024-08-23T14:06:00.8302345Z       "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:06:00.8303027Z       "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:06:00.8304003Z       "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:06:00.8304991Z       "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:06:00.8305608Z       "site_admin": false,
2024-08-23T14:06:00.8306307Z       "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:06:00.8307395Z       "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:06:00.8308355Z       "type": "User",
2024-08-23T14:06:00.8308870Z       "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:06:00.8309517Z     },
2024-08-23T14:06:00.8309837Z     "workflow": {
2024-08-23T14:06:00.8310511Z       "badge_url": "https://github.com/qkdreyer/workflows/workflows/Comment/badge.svg",
2024-08-23T14:06:00.8311497Z       "created_at": "2024-08-23T14:03:58.000Z",
2024-08-23T14:06:00.8312381Z       "html_url": "https://github.com/qkdreyer/workflows/blob/main/.github/workflows/comment.yml",
2024-08-23T14:06:00.8313248Z       "id": 113818769,
2024-08-23T14:06:00.8313708Z       "name": "Comment",
2024-08-23T14:06:00.8314127Z       "node_id": "W_kwDOMnXImc4GyLyR",
2024-08-23T14:06:00.8314678Z       "path": ".github/workflows/comment.yml",
2024-08-23T14:06:00.8315416Z       "state": "active",
2024-08-23T14:06:00.8315922Z       "updated_at": "2024-08-23T14:03:58.000Z",
2024-08-23T14:06:00.8316805Z       "url": "https://api.github.com/repos/qkdreyer/workflows/actions/workflows/113818769"
2024-08-23T14:06:00.8317693Z     },
2024-08-23T14:06:00.8318001Z     "workflow_run": {
2024-08-23T14:06:00.8318570Z       "actor": {
2024-08-23T14:06:00.8319251Z         "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:06:00.8320197Z         "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:06:00.8321083Z         "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:06:00.8322143Z         "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:06:00.8323139Z         "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:06:00.8323846Z         "gravatar_id": "",
2024-08-23T14:06:00.8324401Z         "html_url": "https://github.com/qkdreyer",
2024-08-23T14:06:00.8324964Z         "id": 717869,
2024-08-23T14:06:00.8325338Z         "login": "qkdreyer",
2024-08-23T14:06:00.8325883Z         "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:06:00.8326613Z         "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:06:00.8327559Z         "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:06:00.8328553Z         "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:06:00.8329214Z         "site_admin": false,
2024-08-23T14:06:00.8330039Z         "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:06:00.8331154Z         "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:06:00.8331942Z         "type": "User",
2024-08-23T14:06:00.8332412Z         "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:06:00.8333035Z       },
2024-08-23T14:06:00.8333847Z       "artifacts_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/artifacts",
2024-08-23T14:06:00.8335207Z       "cancel_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/cancel",
2024-08-23T14:06:00.8336147Z       "check_suite_id": 27526452702,
2024-08-23T14:06:00.8336769Z       "check_suite_node_id": "CS_kwDOMnXImc8AAAAGaLRV3g",
2024-08-23T14:06:00.8337834Z       "check_suite_url": "https://api.github.com/repos/qkdreyer/workflows/check-suites/27526452702",
2024-08-23T14:06:00.8338776Z       "conclusion": "success",
2024-08-23T14:06:00.8339322Z       "created_at": "2024-08-23T14:05:37Z",
2024-08-23T14:06:00.8339843Z       "display_title": "pr",
2024-08-23T14:06:00.8340340Z       "event": "issue_comment",
2024-08-23T14:06:00.8340821Z       "head_branch": "main",
2024-08-23T14:06:00.8341248Z       "head_commit": {
2024-08-23T14:06:00.8341693Z         "author": {
2024-08-23T14:06:00.8342120Z           "email": "quentin.dreyer@gmail.com",
2024-08-23T14:06:00.8342669Z           "name": "Quentin Dreyer"
2024-08-23T14:06:00.8343163Z         },
2024-08-23T14:06:00.8343502Z         "committer": {
2024-08-23T14:06:00.8343934Z           "email": "noreply@github.com",
2024-08-23T14:06:00.8344485Z           "name": "GitHub"
2024-08-23T14:06:00.8344889Z         },
2024-08-23T14:06:00.8345355Z         "id": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
2024-08-23T14:06:00.8346073Z         "message": "Create workflow-run.yml",
2024-08-23T14:06:00.8346704Z         "timestamp": "2024-08-23T14:04:17Z",
2024-08-23T14:06:00.8347352Z         "tree_id": "972d18cb0aa64e8f741fba8155a96e435eb47255"
2024-08-23T14:06:00.8348596Z       },
2024-08-23T14:06:00.8349017Z       "head_repository": {
2024-08-23T14:06:00.8349826Z         "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
2024-08-23T14:06:00.8351024Z         "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
2024-08-23T14:06:00.8352114Z         "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
2024-08-23T14:06:00.8353225Z         "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
2024-08-23T14:06:00.8354505Z         "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
2024-08-23T14:06:00.8355979Z         "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
2024-08-23T14:06:00.8357059Z         "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
2024-08-23T14:06:00.8358275Z         "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
2024-08-23T14:06:00.8359419Z         "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
2024-08-23T14:06:00.8360527Z         "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
2024-08-23T14:06:00.8361687Z         "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
2024-08-23T14:06:00.8362476Z         "description": null,
2024-08-23T14:06:00.8363178Z         "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
2024-08-23T14:06:00.8364219Z         "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
2024-08-23T14:06:00.8364976Z         "fork": false,
2024-08-23T14:06:00.8365580Z         "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
2024-08-23T14:06:00.8366371Z         "full_name": "qkdreyer/workflows",
2024-08-23T14:06:00.8367356Z         "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
2024-08-23T14:06:00.8368514Z         "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
2024-08-23T14:06:00.8369742Z         "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
2024-08-23T14:06:00.8370684Z         "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
2024-08-23T14:06:00.8371512Z         "html_url": "https://github.com/qkdreyer/workflows",
2024-08-23T14:06:00.8372179Z         "id": 846579865,
2024-08-23T14:06:00.8372952Z         "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
2024-08-23T14:06:00.8374228Z         "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
2024-08-23T14:06:00.8375463Z         "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
2024-08-23T14:06:00.8376472Z         "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
2024-08-23T14:06:00.8377515Z         "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
2024-08-23T14:06:00.8378609Z         "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
2024-08-23T14:06:00.8379591Z         "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
2024-08-23T14:06:00.8380639Z         "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
2024-08-23T14:06:00.8381548Z         "name": "workflows",
2024-08-23T14:06:00.8382018Z         "node_id": "R_kgDOMnXImQ",
2024-08-23T14:06:00.8382997Z         "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
2024-08-23T14:06:00.8384113Z         "owner": {
2024-08-23T14:06:00.8384729Z           "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:06:00.8385642Z           "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:06:00.8386638Z           "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:06:00.8387633Z           "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:06:00.8388835Z           "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:06:00.8389651Z           "gravatar_id": "",
2024-08-23T14:06:00.8390179Z           "html_url": "https://github.com/qkdreyer",
2024-08-23T14:06:00.8390724Z           "id": 717869,
2024-08-23T14:06:00.8391206Z           "login": "qkdreyer",
2024-08-23T14:06:00.8391720Z           "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:06:00.8392427Z           "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:06:00.8393685Z           "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:06:00.8394610Z           "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:06:00.8395343Z           "site_admin": false,
2024-08-23T14:06:00.8396053Z           "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:06:00.8397082Z           "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:06:00.8397917Z           "type": "User",
2024-08-23T14:06:00.8398404Z           "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:06:00.8398981Z         },
2024-08-23T14:06:00.8399405Z         "private": false,
2024-08-23T14:06:00.8400057Z         "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
2024-08-23T14:06:00.8401111Z         "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
2024-08-23T14:06:00.8402244Z         "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
2024-08-23T14:06:00.8403275Z         "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
2024-08-23T14:06:00.8404500Z         "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
2024-08-23T14:06:00.8405703Z         "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
2024-08-23T14:06:00.8406710Z         "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
2024-08-23T14:06:00.8407574Z         "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
2024-08-23T14:06:00.8408618Z         "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
2024-08-23T14:06:00.8409524Z         "url": "https://api.github.com/repos/qkdreyer/workflows"
2024-08-23T14:06:00.8410130Z       },
2024-08-23T14:06:00.8410908Z       "head_sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
2024-08-23T14:06:00.8412384Z       "html_url": "https://github.com/qkdreyer/workflows/actions/runs/10527126838",
2024-08-23T14:06:00.8413623Z       "id": 10527126838,
2024-08-23T14:06:00.8415075Z       "jobs_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/jobs",
2024-08-23T14:06:00.8416880Z       "logs_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/logs",
2024-08-23T14:06:00.8418067Z       "name": "Comment",
2024-08-23T14:06:00.8418863Z       "node_id": "WFR_kwLOMnXImc8AAAACc3c1Ng",
2024-08-23T14:06:00.8419755Z       "path": ".github/workflows/comment.yml",
2024-08-23T14:06:00.8420589Z       "previous_attempt_url": null,
2024-08-23T14:06:00.8421432Z       "pull_requests": [],
2024-08-23T14:06:00.8422187Z       "referenced_workflows": [],
2024-08-23T14:06:00.8422719Z       "repository": {
2024-08-23T14:06:00.8423587Z         "archive_url": "https://api.github.com/repos/qkdreyer/workflows/{archive_format}{/ref}",
2024-08-23T14:06:00.8424761Z         "assignees_url": "https://api.github.com/repos/qkdreyer/workflows/assignees{/user}",
2024-08-23T14:06:00.8425842Z         "blobs_url": "https://api.github.com/repos/qkdreyer/workflows/git/blobs{/sha}",
2024-08-23T14:06:00.8426960Z         "branches_url": "https://api.github.com/repos/qkdreyer/workflows/branches{/branch}",
2024-08-23T14:06:00.8428531Z         "collaborators_url": "https://api.github.com/repos/qkdreyer/workflows/collaborators{/collaborator}",
2024-08-23T14:06:00.8429797Z         "comments_url": "https://api.github.com/repos/qkdreyer/workflows/comments{/number}",
2024-08-23T14:06:00.8430937Z         "commits_url": "https://api.github.com/repos/qkdreyer/workflows/commits{/sha}",
2024-08-23T14:06:00.8432084Z         "compare_url": "https://api.github.com/repos/qkdreyer/workflows/compare/{base}...{head}",
2024-08-23T14:06:00.8433228Z         "contents_url": "https://api.github.com/repos/qkdreyer/workflows/contents/{+path}",
2024-08-23T14:06:00.8434408Z         "contributors_url": "https://api.github.com/repos/qkdreyer/workflows/contributors",
2024-08-23T14:06:00.8435704Z         "deployments_url": "https://api.github.com/repos/qkdreyer/workflows/deployments",
2024-08-23T14:06:00.8436511Z         "description": null,
2024-08-23T14:06:00.8437315Z         "downloads_url": "https://api.github.com/repos/qkdreyer/workflows/downloads",
2024-08-23T14:06:00.8438264Z         "events_url": "https://api.github.com/repos/qkdreyer/workflows/events",
2024-08-23T14:06:00.8438984Z         "fork": false,
2024-08-23T14:06:00.8439669Z         "forks_url": "https://api.github.com/repos/qkdreyer/workflows/forks",
2024-08-23T14:06:00.8440380Z         "full_name": "qkdreyer/workflows",
2024-08-23T14:06:00.8441219Z         "git_commits_url": "https://api.github.com/repos/qkdreyer/workflows/git/commits{/sha}",
2024-08-23T14:06:00.8442407Z         "git_refs_url": "https://api.github.com/repos/qkdreyer/workflows/git/refs{/sha}",
2024-08-23T14:06:00.8443429Z         "git_tags_url": "https://api.github.com/repos/qkdreyer/workflows/git/tags{/sha}",
2024-08-23T14:06:00.8444435Z         "hooks_url": "https://api.github.com/repos/qkdreyer/workflows/hooks",
2024-08-23T14:06:00.8445337Z         "html_url": "https://github.com/qkdreyer/workflows",
2024-08-23T14:06:00.8445961Z         "id": 846579865,
2024-08-23T14:06:00.8446891Z         "issue_comment_url": "https://api.github.com/repos/qkdreyer/workflows/issues/comments{/number}",
2024-08-23T14:06:00.8448239Z         "issue_events_url": "https://api.github.com/repos/qkdreyer/workflows/issues/events{/number}",
2024-08-23T14:06:00.8449395Z         "issues_url": "https://api.github.com/repos/qkdreyer/workflows/issues{/number}",
2024-08-23T14:06:00.8450385Z         "keys_url": "https://api.github.com/repos/qkdreyer/workflows/keys{/key_id}",
2024-08-23T14:06:00.8451467Z         "labels_url": "https://api.github.com/repos/qkdreyer/workflows/labels{/name}",
2024-08-23T14:06:00.8452519Z         "languages_url": "https://api.github.com/repos/qkdreyer/workflows/languages",
2024-08-23T14:06:00.8453486Z         "merges_url": "https://api.github.com/repos/qkdreyer/workflows/merges",
2024-08-23T14:06:00.8454612Z         "milestones_url": "https://api.github.com/repos/qkdreyer/workflows/milestones{/number}",
2024-08-23T14:06:00.8455475Z         "name": "workflows",
2024-08-23T14:06:00.8455932Z         "node_id": "R_kgDOMnXImQ",
2024-08-23T14:06:00.8456991Z         "notifications_url": "https://api.github.com/repos/qkdreyer/workflows/notifications{?since,all,participating}",
2024-08-23T14:06:00.8458032Z         "owner": {
2024-08-23T14:06:00.8458623Z           "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:06:00.8459593Z           "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:06:00.8460534Z           "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:06:00.8461518Z           "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:06:00.8462530Z           "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:06:00.8463266Z           "gravatar_id": "",
2024-08-23T14:06:00.8463775Z           "html_url": "https://github.com/qkdreyer",
2024-08-23T14:06:00.8464392Z           "id": 717869,
2024-08-23T14:06:00.8464809Z           "login": "qkdreyer",
2024-08-23T14:06:00.8465332Z           "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:06:00.8466116Z           "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:06:00.8467124Z           "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:06:00.8468632Z           "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:06:00.8469420Z           "site_admin": false,
2024-08-23T14:06:00.8470104Z           "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:06:00.8471125Z           "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:06:00.8472165Z           "type": "User",
2024-08-23T14:06:00.8472632Z           "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:06:00.8473215Z         },
2024-08-23T14:06:00.8473624Z         "private": false,
2024-08-23T14:06:00.8474287Z         "pulls_url": "https://api.github.com/repos/qkdreyer/workflows/pulls{/number}",
2024-08-23T14:06:00.8475369Z         "releases_url": "https://api.github.com/repos/qkdreyer/workflows/releases{/id}",
2024-08-23T14:06:00.8476483Z         "stargazers_url": "https://api.github.com/repos/qkdreyer/workflows/stargazers",
2024-08-23T14:06:00.8477507Z         "statuses_url": "https://api.github.com/repos/qkdreyer/workflows/statuses/{sha}",
2024-08-23T14:06:00.8478590Z         "subscribers_url": "https://api.github.com/repos/qkdreyer/workflows/subscribers",
2024-08-23T14:06:00.8479743Z         "subscription_url": "https://api.github.com/repos/qkdreyer/workflows/subscription",
2024-08-23T14:06:00.8480758Z         "tags_url": "https://api.github.com/repos/qkdreyer/workflows/tags",
2024-08-23T14:06:00.8481623Z         "teams_url": "https://api.github.com/repos/qkdreyer/workflows/teams",
2024-08-23T14:06:00.8482652Z         "trees_url": "https://api.github.com/repos/qkdreyer/workflows/git/trees{/sha}",
2024-08-23T14:06:00.8483812Z         "url": "https://api.github.com/repos/qkdreyer/workflows"
2024-08-23T14:06:00.8484423Z       },
2024-08-23T14:06:00.8485218Z       "rerun_url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838/rerun",
2024-08-23T14:06:00.8486141Z       "run_attempt": 1,
2024-08-23T14:06:00.8486527Z       "run_number": 2,
2024-08-23T14:06:00.8487157Z       "run_started_at": "2024-08-23T14:05:37Z",
2024-08-23T14:06:00.8487704Z       "status": "completed",
2024-08-23T14:06:00.8488122Z       "triggering_actor": {
2024-08-23T14:06:00.8488848Z         "avatar_url": "https://avatars.githubusercontent.com/u/717869?v=4",
2024-08-23T14:06:00.8489776Z         "events_url": "https://api.github.com/users/qkdreyer/events{/privacy}",
2024-08-23T14:06:00.8490661Z         "followers_url": "https://api.github.com/users/qkdreyer/followers",
2024-08-23T14:06:00.8491721Z         "following_url": "https://api.github.com/users/qkdreyer/following{/other_user}",
2024-08-23T14:06:00.8492708Z         "gists_url": "https://api.github.com/users/qkdreyer/gists{/gist_id}",
2024-08-23T14:06:00.8493474Z         "gravatar_id": "",
2024-08-23T14:06:00.8493949Z         "html_url": "https://github.com/qkdreyer",
2024-08-23T14:06:00.8494513Z         "id": 717869,
2024-08-23T14:06:00.8494994Z         "login": "qkdreyer",
2024-08-23T14:06:00.8495449Z         "node_id": "MDQ6VXNlcjcxNzg2OQ==",
2024-08-23T14:06:00.8496169Z         "organizations_url": "https://api.github.com/users/qkdreyer/orgs",
2024-08-23T14:06:00.8497208Z         "received_events_url": "https://api.github.com/users/qkdreyer/received_events",
2024-08-23T14:06:00.8498090Z         "repos_url": "https://api.github.com/users/qkdreyer/repos",
2024-08-23T14:06:00.8498739Z         "site_admin": false,
2024-08-23T14:06:00.8499516Z         "starred_url": "https://api.github.com/users/qkdreyer/starred{/owner}{/repo}",
2024-08-23T14:06:00.8500507Z         "subscriptions_url": "https://api.github.com/users/qkdreyer/subscriptions",
2024-08-23T14:06:00.8501259Z         "type": "User",
2024-08-23T14:06:00.8501837Z         "url": "https://api.github.com/users/qkdreyer"
2024-08-23T14:06:00.8502371Z       },
2024-08-23T14:06:00.8502811Z       "updated_at": "2024-08-23T14:05:51Z",
2024-08-23T14:06:00.8503703Z       "url": "https://api.github.com/repos/qkdreyer/workflows/actions/runs/10527126838",
2024-08-23T14:06:00.8504481Z       "workflow_id": 113818769,
2024-08-23T14:06:00.8505315Z       "workflow_url": "https://api.github.com/repos/qkdreyer/workflows/actions/workflows/113818769"
2024-08-23T14:06:00.8506253Z     }
2024-08-23T14:06:00.8506532Z   },
2024-08-23T14:06:00.8506907Z   "server_url": "https://github.com",
2024-08-23T14:06:00.8507520Z   "api_url": "https://api.github.com",
2024-08-23T14:06:00.8508327Z   "graphql_url": "https://api.github.com/graphql",
2024-08-23T14:06:00.8509123Z   "ref_name": "main",
2024-08-23T14:06:00.8509615Z   "ref_protected": false,
2024-08-23T14:06:00.8510025Z   "ref_type": "branch",
2024-08-23T14:06:00.8510466Z   "secret_source": "Actions",
2024-08-23T14:06:00.8511398Z   "workflow_ref": "qkdreyer/workflows/.github/workflows/workflow-run.yml@refs/heads/main",
2024-08-23T14:06:00.8512354Z   "workflow_sha": "e47a5ceb87b7b834611cab97fdff4be6e0a9a577",
2024-08-23T14:06:00.8513112Z   "workspace": "/home/runner/work/workflows/workflows",
2024-08-23T14:06:00.8513769Z   "action": "__run"
2024-08-23T14:06:00.8514117Z }
2024-08-23T14:06:00.8783936Z Cleaning up orphan processes

Job Log Output

If applicable, include the relevant part of the job / step log output here. All sensitive information should already be masked out, but please double-check before pasting here.

Runner and Worker's Diagnostic Logs

If applicable, add relevant diagnostic log information. Logs are located in the runner's _diag folder. The runner logs are prefixed with Runner_ and the worker logs are prefixed with Worker_. Each job run correlates to a worker log. All sensitive information should already be masked out, but please double-check before pasting here.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    StalebugSomething isn't working

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions