Skip to content

Commit 9514ff5

Browse files
Update headers to be to follow accessibility guidelines in book-club.… (#497)
* Update headers to be to follow accessibility guidelines in book-club.html * updated conflict
1 parent 8bd7113 commit 9514ff5

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/conference.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ jobs:
5353
labels: |
5454
report
5555
automated pr
56+
5657
add_comment:
5758
runs-on: ubuntu-latest
5859

@@ -79,14 +80,14 @@ jobs:
7980
8081
- name: Add comment to the issue
8182
uses: actions/github-script@v6
82-
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
83+
if: ${{ github.event.action == 'opened' && startsWith(github.event.issue.title, '[CONFERENCE]') && contains(github.event.issue.labels.*.name, 'conference') }}
8384
with:
8485
github-token: ${{ secrets.GITHUB_TOKEN }}
8586
script: |
8687
const issueNumber = context.payload.issue.number;
87-
const comment = "Automated issue, no action is required."
88+
const comment = "Automated issue, no action is required.";
8889
89-
github.issues.createComment({
90+
await github.issues.createComment({
9091
...context.repo,
9192
issue_number: issueNumber,
9293
body: comment

book-club.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ <h1><strong>Black Python Devs Book Club: A Community of Readers and Learners</st
1515

1616
<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>
1717

18-
<h3><strong>Books Completed:</strong></h3>
18+
<h2><strong>Books Completed:</strong></h2>
1919

2020
{% for book in site.data.books %}
2121
<div class="book">
22-
<h2>{{ book.title }}</h2>
22+
<h3>{{ book.title }}</h3>
2323
<p><strong>Author:</strong> {{ book.author }}</p>
2424

2525
<h4>Reviews</h4>

0 commit comments

Comments
 (0)