From d93c697c9d63ccd6f5f77e15589ebe68d0f2821c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20J=C3=A4genstedt?= Date: Thu, 24 Oct 2019 21:48:15 +0200 Subject: [PATCH] [GitHub Actions] put `name` first in workflow definitions Matching https://github.com/web-platform-tests/wpt/pull/19838. --- .github/workflows/documentation.yml | 2 +- .github/workflows/manifest.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 400722f792190a..9352fb81e2c5fb 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -1,3 +1,4 @@ +name: documentation on: push: branches: @@ -11,7 +12,6 @@ on: - 'docs/**' - 'resources/**' - 'tools/**' -name: documentation jobs: build-and-publish: runs-on: ubuntu-18.04 diff --git a/.github/workflows/manifest.yml b/.github/workflows/manifest.yml index 8e81c1088ea660..555b9d6c2903c1 100644 --- a/.github/workflows/manifest.yml +++ b/.github/workflows/manifest.yml @@ -1,3 +1,4 @@ +name: manifest on: push: branches: @@ -5,7 +6,6 @@ on: pull_request: paths: - 'tools/**' -name: manifest jobs: build-and-tag: runs-on: ubuntu-18.04