Skip to content

Commit

Permalink
Update branch name references
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Oct 27, 2023
1 parent bc4a755 commit 7a4a35e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/markdown-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: none-shall-pass

on:
push:
branches: [ master ]
branches: [ main ]

jobs:
none-shall-pass:
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ print(response.body)
```
<details>
<summary><strong>
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_sms.py">Send SMS</a>
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_sms.py">Send SMS</a>
</strong></summary>

:warning: Gmail's SMS Gateway has a payload limit. So, it is recommended to break larger messages into multiple SMS.
Expand Down Expand Up @@ -113,7 +113,7 @@ else:

<details>
<summary><strong>
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_email.py">Send Email
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_email.py">Send Email
</a></strong></summary>

```python
Expand Down Expand Up @@ -227,11 +227,11 @@ gitverse-release reverse -f release_notes.rst -t 'Release Notes'
Licensed under the [MIT License][license]

[api-repo]: https://api.github.com/repos/thevickypedia/gmail-connector
[read-email]: https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/read_email.py
[send-email]: https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_email.py
[send-sms]: https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_sms.py
[release-notes]: https://github.com/thevickypedia/gmail-connector/blob/master/release_notes.rst
[license]: https://github.com/thevickypedia/gmail-connector/blob/master/LICENSE
[read-email]: https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/read_email.py
[send-email]: https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_email.py
[send-sms]: https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_sms.py
[release-notes]: https://github.com/thevickypedia/gmail-connector/blob/main/release_notes.rst
[license]: https://github.com/thevickypedia/gmail-connector/blob/main/LICENSE
[pypi]: https://pypi.org/project/gmail-connector/
[pypi-files]: https://pypi.org/project/gmail-connector/#files
[runbook]: https://thevickypedia.github.io/gmail-connector/
Expand Down
14 changes: 7 additions & 7 deletions docs/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ <h2>Env Vars<a class="headerlink" href="#env-vars" title="Permalink to this head
<section id="usage">
<h2>Usage<a class="headerlink" href="#usage" title="Permalink to this heading"></a></h2>
<section id="send-sms">
<h3><a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_sms.py">Send SMS</a><a class="headerlink" href="#send-sms" title="Permalink to this heading"></a></h3>
<h3><a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_sms.py">Send SMS</a><a class="headerlink" href="#send-sms" title="Permalink to this heading"></a></h3>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">gmailconnector</span> <span class="k">as</span> <span class="nn">gc</span>

<span class="n">sms_object</span> <span class="o">=</span> <span class="n">gc</span><span class="o">.</span><span class="n">SendSMS</span><span class="p">()</span>
Expand All @@ -111,7 +111,7 @@ <h3><a class="reference external" href="https://github.com/thevickypedia/gmail-c
</div>
<details>
<summary><strong>
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_sms.py">Send SMS</a>
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_sms.py">Send SMS</a>
</strong></summary><p>:warning: Gmail’s SMS Gateway has a payload limit. So, it is recommended to break larger messages into multiple SMS.</p>
<section id="additional-args">
<h4>Additional args:<a class="headerlink" href="#additional-args" title="Permalink to this heading"></a></h4>
Expand All @@ -126,7 +126,7 @@ <h4>Additional args:<a class="headerlink" href="#additional-args" title="Permali
</details></section>
</section>
<section id="send-email">
<h3><a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_email.py">Send Email</a><a class="headerlink" href="#send-email" title="Permalink to this heading"></a></h3>
<h3><a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_email.py">Send Email</a><a class="headerlink" href="#send-email" title="Permalink to this heading"></a></h3>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">gmailconnector</span> <span class="k">as</span> <span class="nn">gc</span>

<span class="n">mail_object</span> <span class="o">=</span> <span class="n">gc</span><span class="o">.</span><span class="n">SendEmail</span><span class="p">()</span>
Expand Down Expand Up @@ -154,7 +154,7 @@ <h3><a class="reference external" href="https://github.com/thevickypedia/gmail-c
</div>
<details>
<summary><strong>
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_email.py">Send Email
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_email.py">Send Email
</a></strong></summary><div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">os</span>
<span class="kn">import</span> <span class="nn">gmailconnector</span> <span class="k">as</span> <span class="nn">gc</span>

Expand Down Expand Up @@ -209,7 +209,7 @@ <h4>Additional args:<a class="headerlink" href="#id1" title="Permalink to this h
</details></section>
</section>
<section id="read-email">
<h3><a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/read_email.py">Read Email</a><a class="headerlink" href="#read-email" title="Permalink to this heading"></a></h3>
<h3><a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/read_email.py">Read Email</a><a class="headerlink" href="#read-email" title="Permalink to this heading"></a></h3>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">datetime</span>

<span class="kn">import</span> <span class="nn">gmailconnector</span> <span class="k">as</span> <span class="nn">gc</span>
Expand Down Expand Up @@ -241,7 +241,7 @@ <h3>Linting<a class="headerlink" href="#linting" title="Permalink to this headin
</div>
</section>
<section id="release-notes">
<h3><a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/master/release_notes.rst">Release Notes</a><a class="headerlink" href="#release-notes" title="Permalink to this heading"></a></h3>
<h3><a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/main/release_notes.rst">Release Notes</a><a class="headerlink" href="#release-notes" title="Permalink to this heading"></a></h3>
<p><strong>Requirement</strong></p>
<div class="highlight-shell notranslate"><div class="highlight"><pre><span></span>python<span class="w"> </span>-m<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span>gitverse
</pre></div>
Expand All @@ -265,7 +265,7 @@ <h3>Runbook<a class="headerlink" href="#runbook" title="Permalink to this headin
<section id="license-copyright">
<h2>License &amp; copyright<a class="headerlink" href="#license-copyright" title="Permalink to this heading"></a></h2>
<p>© Vignesh Rao</p>
<p>Licensed under the <a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/master/LICENSE">MIT License</a></p>
<p>Licensed under the <a class="reference external" href="https://github.com/thevickypedia/gmail-connector/blob/main/LICENSE">MIT License</a></p>
</section>
</section>

Expand Down
14 changes: 7 additions & 7 deletions docs/_sources/README.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ print(response.body)
```
<details>
<summary><strong>
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_sms.py">Send SMS</a>
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_sms.py">Send SMS</a>
</strong></summary>

:warning: Gmail's SMS Gateway has a payload limit. So, it is recommended to break larger messages into multiple SMS.
Expand Down Expand Up @@ -113,7 +113,7 @@ else:

<details>
<summary><strong>
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_email.py">Send Email
More on <a href="https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_email.py">Send Email
</a></strong></summary>

```python
Expand Down Expand Up @@ -227,11 +227,11 @@ gitverse-release reverse -f release_notes.rst -t 'Release Notes'
Licensed under the [MIT License][license]

[api-repo]: https://api.github.com/repos/thevickypedia/gmail-connector
[read-email]: https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/read_email.py
[send-email]: https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_email.py
[send-sms]: https://github.com/thevickypedia/gmail-connector/blob/master/gmailconnector/send_sms.py
[release-notes]: https://github.com/thevickypedia/gmail-connector/blob/master/release_notes.rst
[license]: https://github.com/thevickypedia/gmail-connector/blob/master/LICENSE
[read-email]: https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/read_email.py
[send-email]: https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_email.py
[send-sms]: https://github.com/thevickypedia/gmail-connector/blob/main/gmailconnector/send_sms.py
[release-notes]: https://github.com/thevickypedia/gmail-connector/blob/main/release_notes.rst
[license]: https://github.com/thevickypedia/gmail-connector/blob/main/LICENSE
[pypi]: https://pypi.org/project/gmail-connector/
[pypi-files]: https://pypi.org/project/gmail-connector/#files
[runbook]: https://thevickypedia.github.io/gmail-connector/
Expand Down

0 comments on commit 7a4a35e

Please sign in to comment.