Skip to content

fix: skip running tests on changes in validate-deploy-docs.yaml #420

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
92a7bdf
chore: run appinspect api on release branches (#376)
mgrandys-splunk Mar 6, 2025
8adf4a0
feat: skip tests on docs only change (#389)
siddharth-khatsuriya Mar 24, 2025
e30a821
feat: adding docs change validation step in reuseable CI (#390)
siddharth-khatsuriya Apr 25, 2025
67b4168
fix: hec token validation issue in scripted inputs (#393)
dvarasani-crest May 6, 2025
1f26798
docs: change the runbok for appinspect update (#395)
kdoroszko-splunk May 6, 2025
d30b057
Merge branch 'main' into develop
mkolasinski-splunk May 8, 2025
c54ceab
fix: update AppInspect CLI action to v2.10 (#394)
siddharth-khatsuriya May 13, 2025
bddfb2b
chore: sync main into develop after conflict resolution (#399)
siddharth-khatsuriya May 13, 2025
4c9a825
chore: run appinspect api on release branches (#376)
mgrandys-splunk Mar 6, 2025
23c93f8
feat: skip tests on docs only change (#389)
siddharth-khatsuriya Mar 24, 2025
5e17b28
feat: adding docs change validation step in reuseable CI (#390)
siddharth-khatsuriya Apr 25, 2025
cd697b4
fix: hec token validation issue in scripted inputs (#393)
dvarasani-crest May 6, 2025
b93e398
docs: change the runbok for appinspect update (#395)
kdoroszko-splunk May 6, 2025
a8eb995
fix: update AppInspect CLI action to v2.10 (#394)
siddharth-khatsuriya May 13, 2025
e53353a
chore: sync main into develop after conflict resolution (#399)
siddharth-khatsuriya May 13, 2025
5843a59
Chore/resolve conflicts (#400)
siddharth-khatsuriya May 13, 2025
90cd8ec
Revert "feat: adding docs change validation step in reuseable CI (#39…
siddharth-khatsuriya May 26, 2025
1f14af1
chore: merge main to develop (#397)
mkolasinski-splunk May 27, 2025
f4d267f
fix: update os versions for scripted input tests (#407)
dvarasani-crest Jun 5, 2025
f63c2cb
Resolve merge conflict (#409)
siddharth-khatsuriya Jun 17, 2025
c787ed4
Merge branch 'main' of github.com:splunk/addonfactory-workflow-addon-…
siddharth-khatsuriya Jun 17, 2025
53f181c
Main dev conflict (#413)
siddharth-khatsuriya Jun 17, 2025
8057ca3
chore: resolving review comments of dev to main pr (398) (#415)
siddharth-khatsuriya Jun 24, 2025
eab87ea
chore: merge main (#419)
mkolasinski-splunk Jun 27, 2025
450dad0
fix: skip running tests on changes in validate-deploy-docs.yaml (#416)
siddharth-khatsuriya Jul 2, 2025
4232c41
Merge branch 'main' of github.com:splunk/addonfactory-workflow-addon-…
siddharth-khatsuriya Jul 3, 2025
4b4407b
chore: resolving conflict between develop and main (#422)
siddharth-khatsuriya Jul 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/reusable-build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,15 @@ jobs:
- name: Fetch all refs
run: git fetch --prune --unshallow

- name: Check if the changes are only in docs/*, mkdocs.yml, or .github/workflows/docs.yml
- name: Check if the changes are only in docs/*, mkdocs.yml or .github/workflows/validate-deploy-docs.yaml
id: check
run: |
set -o xtrace
# List all files modified in the commit or PR
changed_files=$(git diff --name-only --diff-filter=ACMRT ${{ github.event.pull_request.base.sha }} ${{ github.sha }})

# Check if any of the changed files are not in docs/*, mkdocs.yml, or .github/workflows/docs.yml
if echo "$changed_files" | grep -vqE '^(docs/|mkdocs.yml|.github/workflows/docs.yml)'; then
# Check if any of the changed files are not in docs/*, mkdocs.yml, or .github/workflows/validate-deploy-docs.yaml
if echo "$changed_files" | grep -vqE '^(docs/|mkdocs.yml|.github/workflows/validate-deploy-docs.yaml)'; then
echo "docs-only=false" >> "$GITHUB_OUTPUT"
else
echo "Only documentation changes found."
Expand Down
Loading