Skip to content

Update headers to be to follow accessibility guidelines in book-club.html #491 #496

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

Closed
Show file tree
Hide file tree
Changes from 8 commits
Commits
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
22 changes: 21 additions & 1 deletion .github/workflows/conference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,29 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ env.GITHUB_TOKEN }}

- name: Setup Python environment
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Install dependencies
run: pip install PyGithub PyYAML pre-commit

- name: Run script
env:
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }}
run: |
python _conferences
pre-commit run --all-files --show-diff-on-failure

- name: Add comment to the issue
uses: actions/github-script@v6
if: ${{ github.event.issue.user.type != 'User' }} #adds comment only if the issue is created by a bot
if: ${{ github.event.action == 'opened' && startsWith(github.event.issue.title, '[CONFERENCE]') && contains(github.event.issue.labels.*.name, 'conference') }} #adds comment only if the issue is created by a user
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ on:
# To guarantee Maintained check is occasionally updated. See
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
schedule:
- cron: '22 15 * * 4'
- cron: "22 15 * * 4"
push:
branches: [ "gh-pages" ]
branches: ["gh-pages"]

# Declare default permissions as read only.
permissions: read-all
Expand Down
4 changes: 2 additions & 2 deletions book-club.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ <h1><strong>Black Python Devs Book Club: A Community of Readers and Learners</st

<p>The club's leadership is dedicated to building a vibrant and engaging community for everyone. Our initiative aligns with BPD's overall mission to increase participation, empower our members, and provide opportunities for professional growth.</p>

<h3><strong>Books Completed:</strong></h3>
<h2><strong>Books Completed:</strong></h2>

{% for book in site.data.books %}
<div class="book">
<h2>{{ book.title }}</h2>
<h3>{{ book.title }}</h3>
<p><strong>Author:</strong> {{ book.author }}</p>

<h4>Reviews</h4>
Expand Down
Loading