mirror of
https://github.com/github/codeql.git
synced 2026-05-04 21:25:44 +02:00
fix: remove debug leftovers
This commit is contained in:
42
.github/workflows/simple2.yml
vendored
42
.github/workflows/simple2.yml
vendored
@@ -1,42 +0,0 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
changed_files:
|
||||
runs-on: ubuntu-latest
|
||||
name: Test changed-files
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Get changed files
|
||||
id: source
|
||||
uses: tj-actions/changed-files@v40
|
||||
|
||||
- name: Remove foo from changed files
|
||||
id: step
|
||||
uses: mad9000/actions-find-and-replace-string@3
|
||||
with:
|
||||
source: ${{ steps.source.outputs.all_changed_files }}
|
||||
find: 'foo'
|
||||
replace: ''
|
||||
|
||||
- name: List all changed files
|
||||
id: sink
|
||||
run: |
|
||||
for file in ${{ steps.step.outputs.value }}; do
|
||||
echo "$file was changed"
|
||||
done
|
||||
|
||||
- name: List all changed files
|
||||
id: no-flow
|
||||
run: |
|
||||
for file in ${{ steps.source.outputs.all_changed_files_count }}; do
|
||||
echo "$file was changed"
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user