-
-
Notifications
You must be signed in to change notification settings - Fork 501
Copying the "archived/" directory from recipes-checker #1037
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,5 +47,8 @@ jobs: | |
git rm -q *.json | ||
mv .github/flex-endpoint/*.json . | ||
git add *.json | ||
# merge in new archived files | ||
for file in ../flex_endpoint/archived/*/*.json; do mv "$file" "archived/$(basename $(dirname "$file"))/$(basename "$file")"; done | ||
|
||
git add archived/*/*.json | ||
git commit -m 'Update Flex endpoint' || true | ||
git push origin -f flex/main |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just after:
and remove the rest?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, you nailed it - that worked. Thank you for pointing that out :)