Skip to content

Commit

Permalink
Merge branch 'main' into labeller
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-montalvo authored Nov 8, 2024
2 parents 3bb8f6f + ae37ef0 commit d1f8b73
Show file tree
Hide file tree
Showing 7 changed files with 673 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,8 @@ spec:svg-aam:
spec:mathml-aam:
- any:
- changed-files:
- any-glob-to-any-file: 'mathml-aam/**'
- any-glob-to-any-file: 'mathml-aam/**'
spec:pdf-aam:
- any:
- changed-files:
- any-glob-to-any-file: 'pdf-aam/**'
69 changes: 69 additions & 0 deletions .github/workflows/pdf-aam.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: pdf-aam ED
on:
push:
branches:
- 'main'
paths:
- 'common/**'
- 'pdf-aam/**'
workflow_dispatch:

jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Dispatch to pdf-aam repo
run: |
curl -L -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{secrets.ARIA_EDITOR_DRAFTS}}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/w3c/pdf-aam/actions/workflows/build-from-monorepo.yaml/dispatches \
-d '{"ref":"gh-pages"}'
update-pdf-aam:
runs-on: ubuntu-latest
steps:
- name: Checkout monorepo
uses: actions/checkout@v4
with:
ref: main
path: aria
sparse-checkout: |
pdf-aam
common
- name: Copy common
run: |
mkdir aria/pdf-aam/common
cp -r aria/common/** aria/pdf-aam/common/
sed -i 's|\.\./common|common|g' aria/pdf-aam/index.html
- uses: w3c/spec-prod@v2
with:
TOOLCHAIN: respec
SOURCE: aria/pdf-aam/index.html
DESTINATION: aria/pdf-aam/index.html
# W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_pdf_aam }}
# W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html
# W3C_BUILD_OVERRIDE: |
# specStatus: WD
ARTIFACT_NAME: pdf-aam
- name: Checkout pdf-aam repo
uses: actions/checkout@v4
with:
repository: w3c/pdf-aam
ref: gh-pages
path: pdf-aam
token: ${{ secrets.ARIA_EDITOR_DRAFTS }}
- uses: actions/download-artifact@v4
with:
name: pdf-aam
- name: Copy files
run: |
cp -r aria.common/aria/pdf-aam/** pdf-aam/
- name: Push new files to child repo
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "ED update"
git push origin gh-pages
working-directory: pdf-aam
235 changes: 235 additions & 0 deletions documentation/aria-idl.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<title>Accessible Rich Internet Applications (WAI-ARIA) 1.3</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta name="color-scheme" content="light dark">
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove"></script>
<link href="common/css/common.css" rel="stylesheet" type="text/css"/>
<script class="remove" src="common/script/aria.js"></script>
Expand Down
4 changes: 4 additions & 0 deletions pdf-aam/.pr-preview.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"src_file": "index.html",
"type": "respec"
}
4 changes: 4 additions & 0 deletions pdf-aam/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

# Specification 'pdf-aam'

This is the repository for PDF Accessibility API Mappings (pdf-aam), which is part of the [ARIA suite](https://www.w3.org/WAI/ARIA/deliverables). General information about editing specifications is in the [main ARIA repository readme](https://github.com/w3c/aria/).
Loading

0 comments on commit d1f8b73

Please sign in to comment.