Skip to content

Commit bf0b1e3

Browse files
author
l
committed
fix triggers
1 parent cc111c9 commit bf0b1e3

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

.github/workflows/test-sdc-tasks.yml

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,17 @@ on:
66
# - 'individual-shell-tools/**.sh'
77
# - 'shell-pipelines/**.sh'
88
# - 'jq/*.sh'
9-
pull_request:
9+
pull_request_target:
1010
paths:
1111
- 'individual-shell-tools/**.sh'
1212
- 'shell-pipelines/**.sh'
1313
- 'jq/*.sh'
14-
# pull_request_target:
15-
# types:
16-
# - labeled
17-
# - unlabeled
18-
# - opened
19-
# - edited
20-
# - reopened
14+
types:
15+
- labeled
16+
- unlabeled
17+
- opened
18+
- edited
19+
- reopened
2120

2221
jobs:
2322
test_sdc_tasks:
@@ -30,13 +29,6 @@ jobs:
3029
steps:
3130
- name: checkout pushed PR
3231
uses: actions/checkout@v5
33-
# with:
34-
# fetch-depth: 2
35-
# - name: checkout expected output
36-
# uses: actions/checkout@v5
37-
# with:
38-
# ref: origin/expected-solutions
39-
# path: expect
4032
- name: Get changed files
4133
id: changed-files
4234
uses: tj-actions/changed-files@v47.0.5

individual-shell-tools/awk/script-01.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -euo pipefail
44

55
# TODO: Write a command to output just the names of each player in `scores-table.txt`.
66
# Your output should contain 6 lines, each with just one word on it.
7-
awk '{print $1}' scores-table.txt # deliberately break this implementation
7+
awk '{print $1}' scores-table.txt

0 commit comments

Comments
 (0)