We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0b1e3 commit 6191edbCopy full SHA for 6191edb
.github/workflows/test-sdc-tasks.yml
@@ -6,6 +6,17 @@ on:
6
# - 'individual-shell-tools/**.sh'
7
# - 'shell-pipelines/**.sh'
8
# - 'jq/*.sh'
9
+ pull_request:
10
+ paths:
11
+ - 'individual-shell-tools/**.sh'
12
+ - 'shell-pipelines/**.sh'
13
+ - 'jq/*.sh'
14
+ types:
15
+ - labeled
16
+ - unlabeled
17
+ - opened
18
+ - edited
19
+ - reopened
20
pull_request_target:
21
paths:
22
- 'individual-shell-tools/**.sh'
individual-shell-tools/awk/script-01.sh
@@ -4,4 +4,4 @@ set -euo pipefail
4
5
# TODO: Write a command to output just the names of each player in `scores-table.txt`.
# Your output should contain 6 lines, each with just one word on it.
-awk '{print $1}' scores-table.txt
+awk '{print $1}' scores-table.txt #
0 commit comments