This is an automated email from the ASF dual-hosted git repository.
slawrence pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git
The following commit(s) were added to refs/heads/main by this push:
new 2d399e7 Fix a missed master to main rename
2d399e7 is described below
commit 2d399e703ed26d90e24d99aaa9cfe8a586e5fe84
Author: Steve Lawrence <[email protected]>
AuthorDate: Fri Sep 3 07:29:48 2021 -0400
Fix a missed master to main rename
Commit ba44472a3dfe369fd79442505f163d20d05d5ea5 renamed master to main
but missed an instance due to a grep that missed hidden files. This
caused sonarscan to not be run. Fixed the grep and found only these two
instances.
DAFFODIL-2557
---
.github/workflows/main.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 4c20207..458d98f 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -15,7 +15,7 @@
name: CI
-# Run CI when pushing a commit to master or creating a pull request or
+# Run CI when pushing a commit to main or creating a pull request or
# adding another commit to a pull request or reopening a pull request.
on:
@@ -61,7 +61,7 @@ jobs:
matrix.scala_version == '2.12.14' &&
github.event_name == 'push' &&
github.repository == 'apache/daffodil' &&
- github.ref == 'refs/heads/master'
+ github.ref == 'refs/heads/main'
}}
steps: