Commit graph

71 commits

Author SHA1 Message Date
frankpereira1-web
5dbd661442
Update README.md
test 3
2026-03-25 10:29:57 -07:00
frankpereira1-web
e6d820600b
Update README.md 2026-03-25 10:13:12 -07:00
frankpereira1-web
7ab39dae39
Update README.md 2026-03-25 09:59:10 -07:00
frankpereira1-web
0a16c9c950
Update README.md
โšก DAILY INTEL Saturday, March 21, 2026 ๐Ÿ”„ Refresh Briefing ๐Ÿ™ Daily Gratitude Loading... ๐Ÿ“ˆ Markets & Fed Rate Loading... ๐Ÿฅ‡ Gold & Silver Loading... โšก Energy & Oil Loading... ๐ŸŒพ Grains Loading... ๐ŸŒฟ Cannabis Markets Loading... ๐Ÿ  Central Valley Real Estate Loading... ๐Ÿ” Daily Security Check Loading... Frank Pereira ยท Madera, CA ยท Not yet refreshedconst TODAY = new Date().toLocaleDateString("en-US", {   weekday: "long", year: "numeric", month: "long", day: "numeric" });  const SECTIONS = [   "gratitude",   "equities",   "metals",   "energy",   "grains",   "cannabis",   "realestate",   "security" ];  const PROMPTS = {   gratitude: `You are Frank's personal daily assistant. Frank is a real estate investor and nonprofit operator in Madera, California. Write a warm, personal, uplifting gratitude reminder for today (${TODAY}). 2-3 sentences max. No bullet points.`,    equities: `You are a financial analyst. Today is ${TODAY}. Give a concise briefing on: S&P 500 and Dow Jones latest prices and trend, current Fed funds rate, next FOMC decision outlook, and one key market driver today. Use web search for current data. Bullet points, under 120 words.`,    metals: `You are a commodities analyst. Today is ${TODAY}. Give current spot prices and trend for gold and silver. Note any key drivers or news. Use web search. Bullet points, under 80 words.`,    energy: `You are a commodities analyst. Today is ${TODAY}. Give current WTI crude oil and natural gas prices and trend. Note key drivers. Use web search. Bullet points, under 80 words.`,    grains: `You are a commodities analyst. Today is ${TODAY}. Give current prices and trends for wheat, corn, and soybeans. Note any supply or weather drivers. Use web search. Bullet points, under 80 words.`,    cannabis: `You are a cannabis market analyst. Today is ${TODAY}. Give a brief update on U.S. wholesale cannabis pricing โ€” indoor, greenhouse, outdoor โ€” including California spot index if available. Reference Cannabis Benchmarks data if possible. Use web search. Bullet points, under 100 words.`,    realestate: `You are a California real estate analyst. Today is ${TODAY}. Give a brief update on: Central Valley and Madera County housing market trends, multifamily market in LA/Burbank/Glendale area, any California real estate law changes, and one tip for a turnkey multifamily buyer. Use web search. Bullet points, under 130 words.`,    security: `You are a cybersecurity advisor. Today is ${TODAY}. Give a concise daily digital security checklist for an iPhone/iCloud user. Cover: any active iOS vulnerabilities or patches this week, password hygiene tip, 2FA reminder, phishing awareness, VPN reminder, and one privacy tip. Bullet points, under 100 words.` };  async function fetchSection(key) {   const bodyEl = document.getElementById(`body-${key}`);   bodyEl.innerHTML = '<span class="placeholder">โ— Fetching live data...</span>';    try {     const res = await fetch("https://api.anthropic.com/v1/messages", {       method: "POST",       headers: { "Content-Type": "application/json" },       body: JSON.stringify({         model: "claude-sonnet-4-20250514",         max_tokens: 1000,         tools: [{ type: "web_search_20250305", name: "web_search" }],         messages: [{ role: "user", content: PROMPTS[key] }]       })     });      if (!res.ok) {       const err = await res.json().catch(() => ({}));       throw new Error(err?.error?.message || `HTTP ${res.status}`);     }      const json = await res.json();     const text = (json.content || [])       .filter(b => b.type === "text")       .map(b => b.text)       .join("\n")       .trim();      bodyEl.textContent = text || "No data returned.";   } catch (err) {     bodyEl.innerHTML = `<span class="error-text">โš  ${err.message}</span>`;     console.error(`[${key}]`, err);   } }  async function generateBriefing() {   const btn = document.getElementById("refreshBtn");   btn.disabled = true;   btn.textContent = "โณ Loading...";    // Fetch all sections in parallel   await Promise.all(SECTIONS.map(key => fetchSection(key)));    btn.disabled = false;   btn.textContent = "๐Ÿ”„ Refresh Briefing";    const now = new Date().toLocaleTimeString("en-US", { hour: "2-digit", minute: "2-digit" });   document.getElementById("lastRefresh").textContent = `Last refreshed: ${now}`; } 0upload%20workflow%22git%20push%20origin%20maingithub/workflows/ci.yml.ci.yml%0Aactions/checkout@v3world.txt%20at%20path/to/artifact/%20with%20the%20content%20Hello%20World!.%0Aour%20full%20daily%20briefing%20covers:%0A%0A%F0%9F%93%88%20MARKETS:%20S&P%20500,%20Dow%20Jones,%20Nasdaq,%20Fed%20interest%20rate%0A%F0%9F%9B%A2%EF%B8%8F%20COMMODITIES:%20Gold,%20Silver,%20Oil,%20Grain%20prices%20+%20YoY%20comparison%0A%F0%9F%8C%BF%20CANNABIS:%20Wholesale%20pricing%20index%20(indoor/greenhouse/outdoor)%20from%20Cannabis%20Benchmarks%0A%F0%9F%8F%A0%20REAL%20ESTATE:%20California%20market,%20Burbank/Glendale/Studio%20City/Sherman%20Oaks/Pasadena%20trends%0A%F0%9F%8F%A2%20MULTIFAMILY:%20Turnkey%2015-50%20unit%20deals,%20cap%20rates,%20per-unit%20pricing,%20vacancy%202025%20vs%202026%0A%E2%9A%96%EF%B8%8F%20CA%20LAW%20&%20POLITICS:%20Landlord-tenant%20law%20updates,%20local%20ordinances%0A%F0%9F%94%90%20SECURITY%20CHECK:%20Daily%20privacy%20and%20device%20security%20review%0A%F0%9F%99%8F%20GRATITUDE:%20Name%203%20things%20you%20are%20grateful%20for%20today%0A%0AYou%20are%20building%20something%20real%20Frank%20-%20keep%20going!%20%F0%9F%92%AA%0Aactions/upload-artifact@v4%20action%20uploads%20world.txt%20as%20an%20artifact%20named%20my-artifact.jobs:   upload:     name: https://youtu.be/EvclxVOY4r8?si=lYrvv2J3cv-u_zPL   upload   (frankpereira1-web/upload-artifact),  git clone https://github.com/frankpereira1-web/upload-artifact.git cd upload-artifact
2026-03-25 01:32:49 -07:00
frankpereira1-web
663e3ff14b
Update README.md 2026-03-25 01:27:59 -07:00
Salman Muin Kayser Chishti
e516bc8500 docs: correct description of Node.js 24 support in README 2025-12-12 17:41:47 +00:00
Salman Muin Kayser Chishti
ddc45ed9bc docs: update README to correct action name for Node.js 24 support 2025-12-12 17:38:00 +00:00
Salman Muin Kayser Chishti
615b319bd2 chore: release v6.0.0 for Node.js 24 support
- Update to Node.js 24 runtime (runs.using: node24)
- Bump version to 6.0.0
- Update README with v6 release notes
- Rebuild dist
2025-12-12 17:31:54 +00:00
Patrik Polyak
9687587dec
Merge branch 'main' into patch-1 2025-10-01 11:18:18 +02:00
Daniel Kennedy
9b511775fd
Spell out the first use of GHES 2025-09-24 09:42:45 -04:00
Patrik Polyak
cd231ca1ed
Update GHES guidance to include reference to Node 20 version
`v3` uses Node 16 which is deprecated. `v3-node20` has been available for a while which uses Node 20 so we should reflect this in the documentation.
2025-09-15 12:12:01 +02:00
Ben De St Paer-Gotch
8747d8cd76
Update README.md 2025-06-16 10:11:27 +01:00
Ryan Ghadimi
99ec7df36b
Update README.md 2025-03-14 15:03:00 +00:00
Brian DeHamer
c40c16d999
add new artifact-digest output
Signed-off-by: Brian DeHamer <bdehamer@github.com>
2024-12-17 13:48:06 -08:00
Josh Gross
d7c12077c4
Add a section about hidden files 2024-09-02 10:30:03 -04:00
Josh Gross
d52396ac5d
Add a warning about enabling include-hidden-files 2024-08-15 19:45:59 -04:00
Josh Gross
cb6558bb10
Exclude hidden files by default 2024-08-15 16:22:09 -04:00
Rob Herley
e63ea677fb
Update readme with v3/v2/v1 deprecation notice
- https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
- https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
2024-04-16 16:48:37 -04:00
Mark Massoud
707f5a7b71
Update limitation of 10 artifacts upload to 500
According to https://github.com/actions/upload-artifact/issues/470#issuecomment-1885881535, the limitation has been raised from `10` to `500`. This PR simply updates the docs to reflect the change.
2024-01-27 16:21:08 -05:00
Rob Herley
53ef6987b3
add additional integration test for merge all behavior 2024-01-23 11:15:52 -05:00
Rob Herley
40b3052821
update readme 2024-01-18 13:44:36 -05:00
Rob Herley
11ff42c7b1
add new overwrite input & docs 2024-01-18 13:31:03 -05:00
Rob Herley
8688a86492
Update readme to reflect new artifact/job limit 2024-01-10 15:23:13 -05:00
Konrad Pabjan
73d8b66ede
Support artifact-url output (#496)
* Support artifact-url output

* update dist/index.js

* Update license

* Simplify output

* Update README
2024-01-10 12:31:08 -05:00
shmuel
c320f57948
Update README.md (#492)
Use correct id of step
2024-01-10 10:00:06 -05:00
Rob Herley
7f16e37e88
add migrations docs 2023-12-18 18:10:52 -05:00
Rob Herley
6c139afa6f
update imports and old v4-beta references 2023-12-14 15:08:24 -05:00
Rob Herley
9653d03c4b
Apply suggestions from code review
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
2023-12-13 12:24:16 -05:00
Rob Herley
875b630764
add limitations section 2023-12-13 11:55:56 -05:00
Rob Herley
ecb21463e9
add compression example 2023-12-13 10:17:03 -05:00
Rob Herley
5e7604f84a
trim some repeated info 2023-12-12 23:27:17 -05:00
Rob Herley
d6437d0758
naming 2023-12-12 23:24:58 -05:00
Rob Herley
1b56155703
s/v4-beta/v4/g 2023-12-12 23:21:37 -05:00
Rob Herley
6a5077f99b
update docs and bump @actions/artifact 2023-12-12 23:19:52 -05:00
Konrad Pabjan
aa5cae10db
Add artifact-id output to v4-beta (#448)
* Add artifact-id to outputs

* ncc

---------

Co-authored-by: Rob Herley <robherley@github.com>
2023-10-26 12:05:31 -04:00
George Melikov
e0057a5b76
README: Bump actions/checkout to v3 (#352)
`Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout, actions/checkout`

It's great to have non-deprecated examples.
2023-01-04 13:34:12 -05:00
Jonathan Tamsut
6673cd052c
Update lockfileVersion in package-lock.json (#302)
* update lockfileVersion

* regenerate package lock

* update actions/artifact package

* upgrade to v3

* bump license number

* bump upload-artifact package version

* regenerate index.js

* add newline

* generate release

* revert index.js

* use correct typescript version

* revert artifact version

* regenerate lock file

* revert to newer packages

* regenerate index.js

* use new version in README
2022-03-03 08:44:35 -08:00
Konrad Pabjan
87348cee5f
Add 503 warning when uploading to the same artifact 2022-01-20 15:26:28 +01:00
Jozef Izso
f4ac36d205
Improve readme (#278) 2021-12-07 09:07:03 -05:00
Konrad Pabjan
5f375cca4b
Document how to correctly use environment variables for path input (#274)
* Update README.md

* Update README.md
2021-12-06 16:35:35 -05:00
Peter Mescalchin
0b3de3e43b
Fix README.md links and some formatting updates (#273)
* Some `README.md` whitespace and tweaks

* Fix link and title to GitHub documentation page on `README.md`

* Update link to `actions/toolkit` documentation

* De-quote some YAML blocks/examples in `README.md`
2021-12-01 08:48:09 -05:00
Robert Cannon
9243a41f97
Re-order example descriptions (#209)
Given the way that the two descriptions were written it was confusing about which example was being discussed (see specifically "In the above example in the previous version).
2021-05-21 19:28:43 +02:00
Remy Kabel
9dc0ee81a2
Fix spelling error (#204)
effect -> affect
2021-05-14 15:13:55 +02:00
Konrad Pabjan
a4f98af3fa
Update README.md 2021-01-07 18:56:21 +01:00
Konrad Pabjan
16b8b2b2e7
Update where does the upload go section (#162) 2021-01-05 16:00:51 +01:00
Konrad Pabjan
e4a7ffadfc
Update README with more retention documentation 2020-11-17 12:57:17 -05:00
Brian Westphal
726a6dcd01
Adding example of retention-days option. (#131) 2020-11-13 12:25:13 -05:00
Justin Weissig
abecf4abf4
Updated README.md (#118)
Fixed minor spelling and grammar issues.
2020-09-18 17:36:35 -04:00
Konrad Pabjan
58740802ef
Update README.md 2020-08-11 18:20:19 +02:00
Konrad Pabjan
c8879bf5ae
Detect case insensitive uploads + Bump @actions/artifact to version 0.3.3 (#106)
* Detect case insensitive uploads

* PR feedback
2020-07-31 19:22:08 +02:00