-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WFLY-18925: Flattened Quickstart READMEs
- Loading branch information
amehenda
committed
Jan 24, 2024
1 parent
5cf7e91
commit b545388
Showing
60 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: WildFly Quickstarts Reduce READMEs | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
# Only run the latest job | ||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.ref || github.run_id }}' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
- name: Install Asciidoctor Reducer | ||
run: sudo gem install asciidoctor-reducer | ||
- name: Reduce README | ||
run: | | ||
CURRENT_DIR="$( pwd -P)" | ||
#Get a list of subdirectories that don't start with a . | ||
subdirs=`find . -maxdepth 1 -type d ! -iname ".*"` | ||
#Loop over the subdirectories | ||
for subdir in $subdirs | ||
do | ||
cd $subdir | ||
#Check if the directory contains README-source.adoc | ||
if [ -e README-source.adoc ] | ||
then | ||
#Get the dirname to define artifactId in the adoc | ||
ARTIFACT_ID=":artifactId: $(basename `pwd`)" | ||
#Use asciidoctor-reducer to create a flattened README.adoc | ||
asciidoctor-reducer --preserve-conditionals -o README.adoc README-source.adoc | ||
#Insert the directory name with env-github def so that this only affects GitHub rendering | ||
sed -i "1s/^/ifdef::env-github[]\n$ARTIFACT_ID\nendif::[]\n\n/" README.adoc | ||
fi | ||
cd $CURRENT_DIR | ||
done | ||
- name: Commit and Push README | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
add: '*.adoc' |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.