Skip to content

Update headers to be to follow accessibility guidelines in book-club.… #497

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

Merged
Merged
Show file tree
Hide file tree
Changes from all 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
7 changes: 4 additions & 3 deletions .github/workflows/conference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
labels: |
report
automated pr

add_comment:
runs-on: ubuntu-latest

Expand All @@ -79,14 +80,14 @@ jobs:

- name: Add comment to the issue
uses: actions/github-script@v6
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
if: ${{ github.event.action == 'opened' && startsWith(github.event.issue.title, '[CONFERENCE]') && contains(github.event.issue.labels.*.name, 'conference') }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const issueNumber = context.payload.issue.number;
const comment = "Automated issue, no action is required."
const comment = "Automated issue, no action is required.";

github.issues.createComment({
await github.issues.createComment({
...context.repo,
issue_number: issueNumber,
body: comment
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