two jobs with the same name override each other status #52

Open
opened 2023-07-12 11:07:21 +00:00 by earl-warren · 0 comments
Owner
jobs:
  integration:
    runs-on: self-hosted
    steps:
      - uses: actions/checkout@v3
      - run: |
          exit 0

and

jobs:
  integration:
    runs-on: self-hosted
    steps:
      - uses: actions/checkout@v3
      - run: |
          exit 1

Will update the integration status in Forgejo and override failure with success and vice versa.

``` jobs: integration: runs-on: self-hosted steps: - uses: actions/checkout@v3 - run: | exit 0 ``` and ``` jobs: integration: runs-on: self-hosted steps: - uses: actions/checkout@v3 - run: | exit 1 ``` Will update the `integration` status in Forgejo and override failure with success and vice versa.
dachary added the
Kind/Bug
label 2023-07-15 15:15:05 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: forgejo/runner#52
No description provided.