Why some GitHub actions stopped executing?

Iván

I have 3 workflows, that validate a directory/file each one (web, server, dockers).

Everything worked fine, until I added a "labeler" workflows to label PRs with web/server/docker labels.

The labeler workflow:

name: "Pull Request Labeler"
on:
  pull_request_target:
    types: [opened, synchronize, reopened, labeled, unlabeled]

jobs:
  labeler:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/labeler@v3
        with:
          repo-token: "${{ secrets.GITHUB_TOKEN }}"

One of the workflows that stopped working:

name: Server validation

on:
  push:
    branches: [master]
    paths:
      - ./server
      - .github/workflows/server-validation.yml
  pull_request:
    branches: [master]
    paths:
      - ./server
      - .github/workflows/server-validation.yml

jobs:
  validation:
    name: Server validation
# ...

Is there anything wrong? I didn't change the directory structure, the master branch name, or the workflow file.

This is the repository, where only the "labeler" workflow is executing: https://github.com/ivancea/autostocklist/actions

It has been happened since the last week, so I'm discarding any GitHub temporary problem.

GuiFalourd

You should inform the paths that way:

paths:
   - 'server/**'
   - '**/server-validation.yml' 

Instead of using something like ./**.

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

Github Actions: [remote rejected] master -> master (shallow update not allowed), error: failed to push some refs

Excel VBA program stopped executing MySQL query

How to set secrets in Github Actions?

Folder missing in artifact - GitHub Actions

Will a github token leak when running github actions

Github Actions .Net 설정 전송

Why has cron stopped processing commands?

Why does `kill %jobnumber` not work on stopped jobs?

Why are the two options of my toggle () executing?

why is mockito not called when executing mocked method?

Get the latest workflow run from GitHub Actions using the Octokit API

GitHub Actions 在 PR 合併時運行兩次

如何使 GitHub Actions 工作流程變乾

GitHub Actions CI의 캐시 적중률 0.00%

Github Actions 매트릭스 질문

如何在 Github Actions 中設置 Rubocop

GitHub Actions - *一些*空的環境秘密

Github-actions: cache repo to speed up maven builds

분기가 PR에 사용한 Github Actions

What does ubuntu-latest mean for GitHub Actions?

PHP / Github Actions workflows: how to provide secrets in $_ENV

Why has my OpenGL fragment stopped redrawing on an update tick?

App has stopped unexpectedly, and i don't know why

Why some of identifiers are illegal in java?

Why some of identifiers are illegal in java?

Unfortunately app has stopped ! when i try to insert some codings into the mainActivity class

GitHub Actions 자동 승인이 GitHub Actions 봇에서 생성한 pull 요청에서 작동하지 않음

Why my 2nd while loop in not executing?

Why is Terminal automatically executing my command after pasting text?

TOP 리스트

  1. 1

    JNDI를 사용하여 Spring Boot에서 다중 데이터 소스 구성

  2. 2

    std :: regex의 일관성없는 동작

  3. 3

    JSoup javax.net.ssl.SSLHandshakeException : <url>과 일치하는 주체 대체 DNS 이름이 없습니다.

  4. 4

    PrematureCloseException : 연결이 너무 일찍 닫혔습니다.

  5. 5

    Xcode10 유효성 검사 : 이미지에 투명성이 없지만 여전히 수락되지 않습니까?

  6. 6

    정점 셰이더에서 카메라에서 개체까지의 XY 거리

  7. 7

    Ionic 2 로더가 적시에 표시되지 않음

  8. 8

    Seaborn에서 축 제목 숨기기

  9. 9

    C #에서 'System.DBNull'형식의 개체를 'System.String'형식으로 캐스팅 할 수 없습니다.

  10. 10

    복사 / 붙여 넣기 비활성화

  11. 11

    ArrayBufferLike의 typescript 정의의 깊은 의미

  12. 12

    Google Play Console에서 '예기치 않은 오류가 발생했습니다. 나중에 다시 시도해주세요. (7100000)'오류를 수정하는 방법은 무엇입니까?

  13. 13

    Kubernetes Horizontal Pod Autoscaler (HPA) 테스트

  14. 14

    jfreecharts에서 x 및 y 축 선을 조정하는 방법

  15. 15

    PRNG 기간보다 순열이 더 많은 목록을 무작위로 섞는 방법은 무엇입니까?

  16. 16

    C # HttpWebRequest 기본 연결이 닫혔습니다. 전송시 예기치 않은 오류가 발생했습니다.

  17. 17

    다음 컨트롤이 추가되었지만 사용할 수 없습니다.

  18. 18

    잘못된 구성 개체입니다. Webpack이 Angular의 API 스키마와 일치하지 않는 구성 개체를 사용하여 초기화되었습니다.

  19. 19

    Android Kotlin은 다른 활동에서 함수를 호출합니다.

  20. 20

    R의 마침표와 숫자 사이에 문자열 삽입

  21. 21

    Assets의 BitmapFactory.decodeStream이 Android 7에서 null을 반환합니다.

뜨겁다태그

보관